From e4dbf9e2bb841c8e17e71ff1fd1a25e771954125 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Mon, 6 Apr 2026 13:33:51 +0400 Subject: [PATCH] Remove --max-warnings from lint scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- apps/console/package.json | 2 +- apps/trust/package.json | 2 +- packages/eslint-config/package.json | 2 +- packages/ui/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/console/package.json b/apps/console/package.json index 68100eb93..9089ac9a4 100644 --- a/apps/console/package.json +++ b/apps/console/package.json @@ -9,7 +9,7 @@ "relay-compile": "npx relay-compiler", "relay": "npm run relay-clean && npm run relay-compile", "build": "tsc -b && vite build", - "lint": "eslint . --concurrency 4 --max-warnings 0", + "lint": "eslint . --concurrency 4", "check": "tsc --noEmit -p tsconfig.app.json", "preview": "vite preview" }, diff --git a/apps/trust/package.json b/apps/trust/package.json index d3a714680..d453eb99d 100644 --- a/apps/trust/package.json +++ b/apps/trust/package.json @@ -7,7 +7,7 @@ "dev": "vite --port 5174", "relay": "find src -type d -name \"__generated__\" -exec rm -rf {} + && npx relay-compiler ./relay.config.json", "build": "tsc -b && vite build", - "lint": "eslint . --concurrency 2 --max-warnings 0", + "lint": "eslint . --concurrency 2", "check": "tsc --noEmit -p tsconfig.app.json", "preview": "vite preview" }, diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 9718cbbef..1f7f70a4d 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -20,7 +20,7 @@ "#stylisticConfigs": "./src/stylisticConfigs.ts" }, "scripts": { - "lint": "eslint src --max-warnings 0" + "lint": "eslint src" }, "keywords": [], "author": "", diff --git a/packages/ui/package.json b/packages/ui/package.json index 773a34d25..819a3f2bc 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -6,7 +6,7 @@ "sideEffects": false, "main": "src/index.ts", "scripts": { - "lint": "eslint . --concurrency 2 --max-warnings 0", + "lint": "eslint . --concurrency 2", "dev": "storybook dev -p 6006 --no-open", "check": "tsc --noEmit -p tsconfig.app.json", "icons": "bun run src/Atoms/Icons/generator.ts"