summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-08-15 20:32:58 -0700
committerRich Trott <rtrott@gmail.com>2018-08-18 18:48:55 -0700
commitc535bde5da18d0fb8c30bf6a3f122fcd7a383662 (patch)
tree953f7ab681ad92b6222e289e70d86f0b9d7b3202 /.eslintrc.js
parent892932f9bdd875006ee248d06ba6be03bd50aeca (diff)
downloadandroid-node-v8-c535bde5da18d0fb8c30bf6a3f122fcd7a383662.tar.gz
android-node-v8-c535bde5da18d0fb8c30bf6a3f122fcd7a383662.tar.bz2
android-node-v8-c535bde5da18d0fb8c30bf6a3f122fcd7a383662.zip
tools: simplify ESLint invocation in Makefile
Makefile currently enforces .eslintrc.js linting on the command line but it is already enforced in the .estlintignore file. This also simplifies an arguably-related comment in .estlinrc.js. PR-URL: https://github.com/nodejs/node/pull/22348 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index c212513393..9c3a78d81c 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',