enable concurrency of eslint linting

This commit is contained in:
maxDorninger
2025-10-29 17:30:15 +01:00
parent 22c4ddc869
commit 079ac1b130

View File

@@ -10,7 +10,7 @@
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint --fix . && prettier --check .",
"lint": "eslint --concurrency auto --fix . && prettier --check .",
"format": "prettier --write .",
"openapi": "npx openapi-typescript http://localhost:8000/openapi.json -o src/lib/api/api.d.ts"
},