Skip to content

Commit

Permalink
Fail CI if there are any eslint warnings
Browse files Browse the repository at this point in the history
As mentioned in
#185 (comment)
  • Loading branch information
sjdemartini committed Jan 25, 2024
1 parent 74b80d5 commit 7ccc07e
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 @@ -63,8 +63,8 @@
"type:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --fix",
"lint:check": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx src --fix",
"lint:check": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx src",
"md-link:check": "markdown-link-check -v -p *.md -c .markdown-link-check-config.json",
"test": "vitest run",
"test:watch": "vitest watch",
Expand Down

0 comments on commit 7ccc07e

Please sign in to comment.