From a20c2d42434ed65bc15584ed753bd77e6e2e2229 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Fri, 2 Jul 2021 08:09:12 -0600 Subject: [PATCH] chore: remove unnecessary ignore pattern from internal js linting 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index efaa5660..cb795883 100644 --- a/package.json +++ b/package.json @@ -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"