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"