VSCodeのESLintのautofixがうまく動いてなかったので設定を変えた
The setting is deprecated. Use editor.codeActionsOnSave instead with a source.fixAll.eslint member.
とエラーが表示されていたので下記のように変えたら動いた。
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.fixAll": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
eslint.validate
は autoFix: true
がデフォルトになったようだ。
別のPCだと同じ設定でも動いてた気がするので、これがすべての環境での解決策になるのかは怪しいかもしれない。
Author And Source
この問題について(VSCodeのESLintのautofixがうまく動いてなかったので設定を変えた), 我々は、より多くの情報をここで見つけました https://qiita.com/hbsnow/items/54b787e914270cf293b0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .