From b687d9cd1d232abb788494de2996af4995370e39 Mon Sep 17 00:00:00 2001 From: RevIQ Date: Fri, 9 Jan 2026 11:48:18 +0800 Subject: [PATCH] Add turbo lint to root lint scripts Run ESLint on all packages in addition to Biome check. Co-Authored-By: Claude Opus 4.5 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3ddfa16..c9ca967 100644 --- a/package.json +++ b/package.json @@ -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" },