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
This commit is contained in:
Oliver Jägle 2024-11-21 22:04:42 +01:00
parent 9792e9387a
commit 424ad1ea18
No known key found for this signature in database
GPG Key ID: 866E2BD1777473E9

View File

@ -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",