Skip to content

Commit 4aa9aca

Browse files
authored
Chore: remove unnecessary ignore pattern from internal js linting (#154)
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.
1 parent 72fb6f8 commit 4aa9aca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scripts": {
99
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel lint:*",
1010
"lint:docs": "markdownlint **/*.md",
11-
"lint:js": "eslint . --ignore-pattern \"!.*\"",
11+
"lint:js": "eslint .",
1212
"generate-readme-table": "node build/generate-readme-table.js",
1313
"generate-release": "node-release-script",
1414
"test": "nyc --all --check-coverage --include lib mocha tests --recursive"

0 commit comments

Comments
 (0)