From 0d66f9d4eb766d67bc66e9b29c835bd915ca9056 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Sat, 1 Mar 2025 10:28:25 +0100 Subject: [PATCH] chore(scripts): add dev:linter-check and dev:linter-fix purposely *not* named as dev:eslint, just to "decouple" the script from eslint, in case there ever is the need to change that :-) --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index e5a492dae..ba0670e89 100644 --- a/package.json +++ b/package.json @@ -57,6 +57,8 @@ "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-fix": "eslint . --fix", "chore:update-build-info": "tsx bin/update-build-info.ts", "chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts", "chore:generate-document": "cross-env nodemon ./bin/generate_document.ts 1000",