Skip to content

Commit 9961a39

Browse files
committed
WIP: Disable eslint cache & unused disable warnings
1 parent 2490fa5 commit 9961a39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 --report-unused-disable-directives-severity 0 --max-warnings 0",
1818
"lint-fix": "yarn lint-check --fix",
1919
"test": "react-scripts test --watchAll=false",
2020
"type-check": "tsc",

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 . --report-unused-disable-directives-severity 0 --max-warnings 0",
4444
"lint-fix": "yarn lint-check --fix",
4545
"test": "jest",
4646
"test-watch": "yarn test --watch",

0 commit comments

Comments
 (0)