From 424ad1ea18be4e11983ab2e3ce2ea066c3ee96ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20J=C3=A4gle?= Date: Thu, 21 Nov 2024 22:04:42 +0100 Subject: [PATCH] Limit linting to app Don't know why, but previously the linter for . didn't terminate, although node_modules is ignored as per linter config --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cc1c256..052c9cd 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "dev": "remix vite:dev", "test": "vitest --run", "test:watch": "vitest", - "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .", - "lint:fix": "npm run lint -- --fix", + "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app", + "lint:fix": "pnpm run lint -- --fix", "start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings", "dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session", "dockerrun": "docker run -it -d --name bolt-ai-live -p 5173:5173 --env-file .env.local bolt-ai",