From 76bf88cd02d22c264d835ab9058dbfd6a0f9ebe1 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 26 Jul 2025 22:50:19 +0200 Subject: [PATCH] Add linting and type-checking scripts to package.json --- webui/package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webui/package.json b/webui/package.json index 8b17164..db03428 100644 --- a/webui/package.json +++ b/webui/package.json @@ -12,7 +12,10 @@ "preview": "vite preview", "test": "vitest", "test:ui": "vitest --ui", - "test:run": "vitest run" + "test:run": "vitest run", + "type-check": "tsc --noEmit", + "lint": "eslint . --ext .ts,.tsx", + "lint:fix": "eslint . --ext .ts,.tsx --fix" }, "dependencies": { "@radix-ui/react-checkbox": "^1.3.2",