From 7e4e28037c45a0069b457a6b5785fa8c2fe7f181 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 1 Feb 2026 22:13:48 -0800 Subject: [PATCH] add typecheck to lint --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 72a10b420..57ed73032 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "dev:watch": "electron-vite dev --watch", "i18next": "i18next -c src/i18n/i18next-parser.config.js", "postinstall": "electron-builder install-app-deps", - "lint": "pnpm run lint-code && pnpm run lint-styles", + "lint": "pnpm run typecheck && pnpm run lint-code && pnpm run lint-styles", "lint-code": "eslint --max-warnings=0 --cache .", "lint-code:fix": "eslint --cache --fix .", "lint-styles": "stylelint --max-warnings=0 'src/**/*.{css,scss}'",