aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--package.json4
2 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 78a31bb5d..01b43a0ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -105,3 +105,4 @@ src/runtime.version
*.db
misctools/machbench
*.big
+.eslintcache
diff --git a/package.json b/package.json
index 12d3e822f..fc5d5eabc 100644
--- a/package.json
+++ b/package.json
@@ -12,8 +12,8 @@
"build-fallback": "esbuild --target=esnext --bundle src/fallback.ts --format=iife --platform=browser --minify > src/fallback.out.js",
"typecheck": "tsc",
"fmt": "prettier --write './**/*.{ts,tsx,js,jsx}'",
- "lint": "eslint './**/*.d.ts'",
- "lint:fix": "eslint './**/*.d.ts' --fix"
+ "lint": "eslint './**/*.d.ts' --cache",
+ "lint:fix": "eslint './**/*.d.ts' --cache --fix"
},
"devDependencies": {
"@types/react": "^18.0.25",