Skip to content

Commit

Permalink
chore: remove eslint caching
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Nov 11, 2024
1 parent c6ed75b commit b403185
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/config-validation-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"validate-config": "eslint . --max-warnings=0 --cache --cache-location=node_modules/.cache/.eslintcache"
"validate-config": "eslint . --max-warnings=0"
},
"dependencies": {
"astro": "^4.12.2",
Expand Down
2 changes: 1 addition & 1 deletion apps/docs-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0 --cache --cache-location=node_modules/.cache/.eslintcache",
"lint": "eslint . --max-warnings=0",
"typesync": "typesync --dry=fail",
"clean": "pnpm clear && rm -rf .turbo dist node_modules/.cache"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/sheriff-webservices/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "tsx watch ./src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0 --cache --cache-location=node_modules/.cache/.eslintcache",
"lint": "eslint . --max-warnings=0",
"typesync": "typesync --dry=fail",
"serve": "node ./dist/index.js",
"clean": "rm -rf .turbo dist node_modules/.cache"
Expand Down
2 changes: 1 addition & 1 deletion packages/sheriff-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"clean": "rm -rf .turbo dist node_modules/.cache",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src --max-warnings=0 --cache --cache-location=node_modules/.cache/.eslintcache",
"lint": "eslint ./src --max-warnings=0",
"publint": "publint",
"typesync": "typesync --dry=fail"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/sheriff-create-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": "tsup",
"build-watch": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src --max-warnings=0 --cache --cache-location=node_modules/.cache/.eslintcache",
"lint": "eslint ./src --max-warnings=0",
"publint": "publint",
"typesync": "typesync --dry=fail"
},
Expand Down
2 changes: 0 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"lint": {
"outputs": ["node_modules/.cache/.eslintcache"],
"dependsOn": ["^topo", "^build"]
},
"validate-config": {
"outputs": ["node_modules/.cache/.eslintcache"],
"dependsOn": ["^topo", "^build"]
},
"publint": {
Expand Down

0 comments on commit b403185

Please sign in to comment.