From ccbbbbe0cca63b16f6b53c14055e48e1c47ce807 Mon Sep 17 00:00:00 2001 From: Duncan Murchison Date: Fri, 6 Feb 2026 15:54:01 -0500 Subject: [PATCH] feat: enhance linting and type checking scripts in package.json for improved code quality --- frontend/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index efa5866..217fd58 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -6,7 +6,9 @@ "scripts": { "dev": "vite", "build": "tsc -b && vite build", - "lint": "eslint .", + "typecheck": "tsc -p tsconfig.app.json --noEmit", + "lint": "eslint . --max-warnings 0", + "check": "tsc -p tsconfig.app.json --noEmit && eslint . --max-warnings 0", "preview": "vite preview" }, "dependencies": {