diff --git a/.eslintrc.js b/.eslintrc.js index c2125133933ffc..9c3a78d81cd27a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -187,7 +187,7 @@ module.exports = { message: 'Use new keyword when throwing an Error.', } ], - /* eslint-enable max-len, quotes */ + /* eslint-enable max-len */ 'no-return-await': 'error', 'no-self-assign': 'error', 'no-self-compare': 'error', diff --git a/Makefile b/Makefile index 231948c15b95bd..5a499b1a5aafe2 100644 --- a/Makefile +++ b/Makefile @@ -1120,7 +1120,7 @@ endif LINT_JS_TARGETS = .eslintrc.js benchmark doc lib test tools run-lint-js = tools/node_modules/eslint/bin/eslint.js --cache \ - --ext=.js,.mjs,.md $(LINT_JS_TARGETS) --ignore-pattern '!.eslintrc.js' + --ext=.js,.mjs,.md $(LINT_JS_TARGETS) run-lint-js-fix = $(run-lint-js) --fix .PHONY: lint-js-fix