From 6a5e6226375ceb0b7052d5676f7e6c41e6eae3cd Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Mon, 3 Mar 2025 22:22:01 +0100 Subject: [PATCH] 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 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1977f9923..eef3f1afa 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "dev:watch-dist": "tsx ./bin/watch-dist.ts", "dev:prettier-check": "prettier . --check", "dev:prettier-fix": "prettier . --write", - "dev:linter-check": "eslint . --cache", + "dev:linter-check": "eslint .", "dev:linter-fix": "eslint . --fix", "chore:update-build-info": "tsx bin/update-build-info.ts", "chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts",