最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ESLint: How to specify rules that can be auto-fixed (using --fix) in the config file? - Stack Overflow

programmeradmin1浏览0评论

Can I control which rules eslint --fix auto fixes?

I have multiple rules but I don't want all the fixable rules to be fixed on doing eslint --fix. Is there a way to specify them in the config file?

Can I control which rules eslint --fix auto fixes?

I have multiple rules but I don't want all the fixable rules to be fixed on doing eslint --fix. Is there a way to specify them in the config file?

Share Improve this question asked Feb 1, 2019 at 10:04 karthikarunakarthikaruna 3,2568 gold badges30 silver badges42 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 5

I had the same task to do: auto fix eslint issues by the rule. Looks like there is no way to do it, so I came up with workaround.

  • Remove "extends" from .eslintrc
  • Remove all rules except rule(s) to fix from .eslintrc
  • Run eslint --fix
  • Revert .eslintrc

For rules that e from "extends" I added them into .eslintrc by myself at step 2.

Here is a plugin for that no-autofix. This way you can blacklist some rules, e.g. rules you want to stay non-fixed.

Note that it works only with core ESLint rules, so it won't prevent auto-fix for the rules from other plugins.

Source: https://stackoverflow./a/55077343/3354444

Using CLI you can ignore the config file and run only the rules you list:

eslint --no-eslintrc --rule 'semi: [1, "always"]' 

See https://eslint/docs/user-guide/mand-line-interface for the rest of the params you may need

发布评论

评论列表(0)

  1. 暂无评论