ESLint自动修复忽略规则

时间:2017-08-01 16:47:33

标签: visual-studio-code eslint

我在vscode中使用带有选项override func prepareForReuse() { self.profileImg.image = #imageLiteral(resourceName: "Profile Icon Empty") super.prepareForReuse() } 的ESLint。

基本上,我想:

  1. 忽略1个特定规则以进行修复prefer-const
  2. 查看编辑器中突出显示的所有警告和错误(包括"eslint.autoFixOnSave": true

1 个答案:

答案 0 :(得分:0)

似乎有一个新插件:eslint-plugin-no-autofix

{
  "plugins": ["no-autofix"],
  "rules": {
    "prefer-const": "off",
    "no-autofix/prefer-const": "warn",
  }
}