File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
apps/react-hook-tracer-demo
packages/react-hook-tracer Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 14
14
"start" : " DISABLE_ESLINT_PLUGIN=true react-scripts start" ,
15
15
"build" : " react-scripts build" ,
16
16
"eject" : " react-scripts eject" ,
17
- "lint-check" : " eslint --cache . -- max-warnings 0" ,
17
+ "lint-check" : " eslint --max-warnings 0" ,
18
18
"lint-fix" : " yarn lint-check --fix" ,
19
19
"test" : " react-scripts test --watchAll=false" ,
20
20
"type-check" : " tsc" ,
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ export default [
26
26
compat . extends (
27
27
'eslint:recommended' ,
28
28
'plugin:react/recommended' ,
29
- 'plugin:@typescript-eslint/recommended' ,
29
+ 'plugin:@typescript-eslint/recommended-type-checked' ,
30
+ // 'plugin:@typescript-eslint/recommended',
30
31
'plugin:jest/recommended' ,
31
32
'plugin:jest/style' ,
32
33
'plugin:react/jsx-runtime' ,
Original file line number Diff line number Diff line change 40
40
"build" : " rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript" ,
41
41
"build-watch" : " yarn build --watch --configIncludeDeclarationMap" ,
42
42
"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" ,
44
44
"lint-fix" : " yarn lint-check --fix" ,
45
45
"test" : " jest" ,
46
46
"test-watch" : " yarn test --watch" ,
You can’t perform that action at this time.
0 commit comments