Skip to content

Commit d7fe200

Browse files
committed
chore(--wip--): do not merge
1 parent 4ca6985 commit d7fe200

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

apps/react-hook-tracer-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
1515
"build": "react-scripts build",
1616
"eject": "react-scripts eject",
17-
"lint-check": "eslint --cache . --max-warnings 0",
17+
"lint-check": "eslint --max-warnings 0",
1818
"lint-fix": "yarn lint-check --fix",
1919
"test": "react-scripts test --watchAll=false",
2020
"type-check": "tsc",

eslint.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ export default [
2626
compat.extends(
2727
'eslint:recommended',
2828
'plugin:react/recommended',
29-
'plugin:@typescript-eslint/recommended',
29+
'plugin:@typescript-eslint/recommended-type-checked',
30+
// 'plugin:@typescript-eslint/recommended',
3031
'plugin:jest/recommended',
3132
'plugin:jest/style',
3233
'plugin:react/jsx-runtime',

packages/react-hook-tracer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
4141
"build-watch": "yarn build --watch --configIncludeDeclarationMap",
4242
"clean": "rm -r dist 2>/dev/null || true && rm -f package.tgz 2>/dev/null || true",
43-
"lint-check": "eslint . --cache . --max-warnings 0",
43+
"lint-check": "eslint --max-warnings 0",
4444
"lint-fix": "yarn lint-check --fix",
4545
"test": "jest",
4646
"test-watch": "yarn test --watch",

0 commit comments

Comments
 (0)