From 0c2a73490d6fd469a1ffd441e9676522a90aa2ea Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Fri, 28 Nov 2025 11:58:38 -0800 Subject: [PATCH] Use turbo lint for root lint script This ensures `pnpm run lint` at the monorepo root runs the same lint tasks as CI (`npx turbo lint`), providing consistent behavior between local development and CI. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 778c7acc..0e91f0b4 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "test:integration": "npx turbo run integration-tests", "test:all": "npx turbo run test integration-tests", "test:unit": "jest", - "lint": "eslint . --ext ts,tsx,js,jsx --rulesdir=packages/webamp-modern/tools/eslint-rules", + "lint": "npx turbo lint", "type-check": "pnpm --filter webamp type-check && pnpm --filter ani-cursor type-check && pnpm --filter skin-database type-check && pnpm --filter webamp-docs type-check && pnpm --filter winamp-eqf type-check", "deploy": "npx turbo webamp#build webamp-modern#build --concurrency 1 && mv packages/webamp-modern/build packages/webamp/dist/demo-site/modern", "format": "prettier --write '**/*.{js,ts,tsx}'"