我在vscode中使用带有选项override func prepareForReuse() {
self.profileImg.image = #imageLiteral(resourceName: "Profile Icon Empty")
super.prepareForReuse()
}
的ESLint。
基本上,我想:
"eslint.autoFixOnSave": true
)答案 0 :(得分:0)
似乎有一个新插件:eslint-plugin-no-autofix
{
"plugins": ["no-autofix"],
"rules": {
"prefer-const": "off",
"no-autofix/prefer-const": "warn",
}
}