Add turbo lint to root lint scripts

Run ESLint on all packages in addition to Biome check.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
RevIQ
2026-01-09 11:48:18 +08:00
parent 5eeef44850
commit b687d9cd1d

View File

@@ -9,8 +9,8 @@
"dev": "turbo dev",
"build": "turbo build",
"build:watch:packages": "turbo watch build --filter=./packages/*",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"lint": "biome check && turbo run lint",
"lint:fix": "biome check --write --unsafe && turbo run lint -- --fix",
"typecheck": "turbo typecheck",
"clean": "turbo clean"
},