scripts(linter): remove "--cache" flag

using it is not recommended for ts-eslint:
https://typescript-eslint.io/troubleshooting/faqs/eslint#can-i-use-eslints---cache-with-typescript-eslint
This commit is contained in:
Panagiotis Papadopoulos 2025-03-03 22:22:01 +01:00 committed by Panagiotis Papadopoulos
parent b2ac5b6337
commit 6a5e622637

View File

@ -57,7 +57,7 @@
"dev:watch-dist": "tsx ./bin/watch-dist.ts", "dev:watch-dist": "tsx ./bin/watch-dist.ts",
"dev:prettier-check": "prettier . --check", "dev:prettier-check": "prettier . --check",
"dev:prettier-fix": "prettier . --write", "dev:prettier-fix": "prettier . --write",
"dev:linter-check": "eslint . --cache", "dev:linter-check": "eslint .",
"dev:linter-fix": "eslint . --fix", "dev:linter-fix": "eslint . --fix",
"chore:update-build-info": "tsx bin/update-build-info.ts", "chore:update-build-info": "tsx bin/update-build-info.ts",
"chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts", "chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts",