Nuxt.jsにESLintいれてVSCodeで自動fixを有効にする設定方法
前提
- Nuxt.js バージョン2.9.2
設定方法
1. Nuxtのプロジェクト作成時にeslintを指定
1. Nuxtのプロジェクト作成時にeslintを指定
2. VSCodeの拡張機能にESLintを追加
3. settings.jsonに設定を追記
「Command(⌘) + Shift(⇧) + P 」 > settingsと入力し、
Preferences: Open Settings(JSON) を選択します。
以下の内容を追記します。
settings.json
"eslint.run": "onSave",
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{ "autoFix": true, "language": "vue" }
],
"editor.formatOnSave": false
必要に応じて.eslintrc.js
のrulesの値を編集してルールを調整します。
Author And Source
この問題について(Nuxt.jsにESLintいれてVSCodeで自動fixを有効にする設定方法), 我々は、より多くの情報をここで見つけました https://qiita.com/mkin/items/2f5ca21bfc719f9b14b5著者帰属:元の著者の情報は、元の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 .