Skip to content

Commit

Permalink
ci(lint): lower max warnings to current number of warnings
Browse files Browse the repository at this point in the history
`--max-warnings` lowered from 1194 to 655.
  • Loading branch information
adrianschmidt committed Dec 2, 2024
1 parent 261a811 commit d9c76a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"lint": "npm run lint:src && npm run lint:scss",
"lint:fix": "npm run lint:src:fix && npm run lint:scss:fix",
"lint:prod": "npm run lint:src:prod && npm run lint:scss:prod",
"lint:src": "eslint \"**/*.{ts,tsx,js}\" --max-warnings=1194 && prettier -c \"{!(package*).json,.prettierrc}\"",
"lint:src": "eslint \"**/*.{ts,tsx,js}\" --max-warnings=655 && prettier -c \"{!(package*).json,.prettierrc}\"",
"lint:src:fix": "eslint \"**/*.{ts,tsx,js}\" --fix && prettier --write \"{!(package*).json,.prettierrc}\"",
"lint:src:prod": "eslint \"**/*.{ts,tsx,js}\" --rule \"linebreak-style: [error, unix]\" --max-warnings=1194 && prettier -c \"{!(package*).json,.prettierrc}\"",
"lint:src:prod": "eslint \"**/*.{ts,tsx,js}\" --rule \"linebreak-style: [error, unix]\" --max-warnings=655 && prettier -c \"{!(package*).json,.prettierrc}\"",
"lint:scss": "prettier -c --ignore-path ./.gitignore **/*.scss",
"lint:scss:fix": "prettier --write --ignore-path ./.gitignore **/*.scss",
"lint:scss:prod": "prettier -c --end-of-line lf --ignore-path ./.gitignore **/*.scss",
Expand Down

0 comments on commit d9c76a1

Please sign in to comment.