Skip to content

Commit

Permalink
Build: Ignore local /test/integration/*/ files for ESLint
Browse files Browse the repository at this point in the history
For example `/test/integration/nyc/coverage/index.html` is a
local artefact that exists after running the integration tests.

Note that we do still run eslint on `/test/integration/*.js`, only
sub directories are ignored.
  • Loading branch information
Krinkle committed Sep 19, 2021
1 parent f403a02 commit 586ac24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"docs/_site/**",
"lib/**",
"qunit/**",
"test/integration/*/qunit/**",
"test/integration/*/**",
"temp/**"
],
"overrides": [
Expand Down

0 comments on commit 586ac24

Please sign in to comment.