Skip to content

Commit

Permalink
Chore: remove unnecessary ignore pattern from internal js linting (#154)
Browse files Browse the repository at this point in the history
This ignore pattern is no longer necessary (ESLint lints .eslintrc.js as of [ESLint 7](https://eslint.org/blog/2020/05/eslint-v7.0.0-released)), and it was causing ESLint to lint some files in node_modules for me locally.
  • Loading branch information
bmish authored Jul 2, 2021
1 parent 72fb6f8 commit 4aa9aca
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 @@
"scripts": {
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel lint:*",
"lint:docs": "markdownlint **/*.md",
"lint:js": "eslint . --ignore-pattern \"!.*\"",
"lint:js": "eslint .",
"generate-readme-table": "node build/generate-readme-table.js",
"generate-release": "node-release-script",
"test": "nyc --all --check-coverage --include lib mocha tests --recursive"
Expand Down

0 comments on commit 4aa9aca

Please sign in to comment.