Skip to content

Commit

Permalink
Ignore errors in eslint when no files match
Browse files Browse the repository at this point in the history
  • Loading branch information
kookster committed May 24, 2024
1 parent e418773 commit 359f269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"node": ">= 20.0.0"
},
"scripts": {
"lint": "prettier --check '**/*.{json,yml}' && eslint -- '**/*.{js,ts,mjs}' && tsc",
"lint": "prettier --check '**/*.{json,yml}' && eslint --no-error-on-unmatched-pattern -- '**/*.{js,mjs}' && tsc",
"start": "cypress open",
"test": "cypress run"
},
Expand Down

0 comments on commit 359f269

Please sign in to comment.