Skip to content

Commit

Permalink
chore: set ESLint max-warnings option to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
cahnory committed Dec 27, 2023
1 parent 5939509 commit 0cc70d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/sample-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dev": "tsc -p tsconfig.build.json --watch",
"lint": "concurrently -r -g pnpm:lint:types pnpm:lint:semantic pnpm:lint:format",
"lint:format": "prettier -c ./",
"lint:semantic": "eslint ./",
"lint:semantic": "eslint ./ --max-warnings 0",
"lint:types": "tsc --noEmit",
"lint:fix": "concurrently -r -g pnpm:lint:fix:format pnpm:lint:fix:semantic",
"lint:fix:format": "prettier --write --list-different ./",
Expand Down
2 changes: 1 addition & 1 deletion libs/sample-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"dev": "tsc -p tsconfig.build.json --watch",
"lint": "concurrently -r -g pnpm:lint:types pnpm:lint:semantic pnpm:lint:format",
"lint:format": "prettier -c ./",
"lint:semantic": "eslint ./",
"lint:semantic": "eslint ./ --max-warnings 0",
"lint:types": "tsc --noEmit",
"lint:fix": "concurrently -r -g pnpm:lint:fix:format pnpm:lint:fix:semantic",
"lint:fix:format": "prettier --write --list-different ./",
Expand Down

0 comments on commit 0cc70d8

Please sign in to comment.