Oliver Jägle
commited on
Limit linting to app
Browse filesDon't know why, but previously the linter for . didn't terminate, although node_modules is ignored as per linter config
- 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": "
|
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",
|