Oliver Jägle commited on
Commit
424ad1e
·
unverified ·
1 Parent(s): 9792e93

Limit linting to app

Browse files

Don't know why, but previously the linter for . didn't terminate, although node_modules is ignored as per linter config

Files changed (1) hide show
  1. package.json +2 -2
package.json CHANGED
@@ -11,8 +11,8 @@
11
  "dev": "remix vite:dev",
12
  "test": "vitest --run",
13
  "test:watch": "vitest",
14
- "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
15
- "lint:fix": "npm run lint -- --fix",
16
  "start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
17
  "dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
18
  "dockerrun": "docker run -it -d --name bolt-ai-live -p 5173:5173 --env-file .env.local bolt-ai",
 
11
  "dev": "remix vite:dev",
12
  "test": "vitest --run",
13
  "test:watch": "vitest",
14
+ "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app",
15
+ "lint:fix": "pnpm run lint -- --fix",
16
  "start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
17
  "dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
18
  "dockerrun": "docker run -it -d --name bolt-ai-live -p 5173:5173 --env-file .env.local bolt-ai",