admin管理员组

文章数量:1342531

How do I run eslint for a single rule? I want to fix one at a time on a code base with many errors.

Something like: eslint --rule no-def path/

How do I run eslint for a single rule? I want to fix one at a time on a code base with many errors.

Something like: eslint --rule no-def path/

Share Improve this question asked Feb 14, 2019 at 2:08 RimianRimian 38.5k17 gold badges125 silver badges119 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

eslint --no-eslintrc --rule "no-undef: 2" path

See --rule and --no-eslintrc.

If you want to use your eslintrc file to keep your configuration (parser, plugin settings, etc), you can use eslint-nibble with the --rule=no-undef flag. This will respect your normal configuration, but only show you errors from that rule.

Disclaimer: I'm the creator of eslint-nibble.

本文标签: javascriptRun eslint for a single ruleStack Overflow