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/
2 Answers
Reset to default 8eslint --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
版权声明:本文标题:javascript - Run eslint for a single rule - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743701159a2524345.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论