From 795e6e77d900c90b7855af250f7bffb9380a9a32 Mon Sep 17 00:00:00 2001 From: Peron Date: Wed, 5 Aug 2026 20:23:25 +0800 Subject: [PATCH] fix(tooling): cap local lint concurrency at 4 threads --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3bb86e35..7d3ff5d0 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,9 @@ "build": "turbo run build", "dev": "turbo run dev", "typecheck": "tsc --build --noEmit", - "lint": "eslint --concurrency=auto --cache --cache-strategy content --format=sukka .", + "lint": "eslint --concurrency=4 --cache --cache-strategy content --format=sukka .", "lint:ci": "eslint --concurrency=off --cache --cache-strategy content --format=sukka .", - "lint:fix": "eslint --concurrency=auto --cache --cache-strategy content --format=sukka --fix .", + "lint:fix": "eslint --concurrency=4 --cache --cache-strategy content --format=sukka --fix .", "format": "biome check --write .", "format:check": "biome check .", "check:ci": "pnpm format:check && pnpm lint && pnpm typecheck",