eslint配置

一隻java自學蟲發表於2020-12-21

全域性安裝eslint
看控制檯輸出什麼錯
報的錯千奇百怪的,不過百度後很好解決,下面附上我的eslint配置
{
“editor.tabSize”: 2,

"prettier.singleQuote": true,
"prettier.semi": false, //分號結尾
  "prettier.useTabs": true,
  "prettier.vueIndentScriptAndStyle": true, // 視區寬度 換行
  "prettier.arrowParens": "avoid", //  (x) => {} 箭頭函式引數只有一個是否要有小括號。avoid:省略括號


"vetur.format.defaultFormatter.html": "prettier",
"vetur.format.defaultFormatterOptions": {
  "js-beautify-html": {
    // force-aligned | force-expand-multiline
    "wrap_attributes": "force-aligned" // - auto: 僅在超出行長度時才對屬性進行換行。 // - force: 對除第一個屬性外的其他每個屬性進行換行。 // - force-aligned: 對除第一個屬性外的其他每個屬性進行換行,並保持對齊。 // - force-expand-multiline: 對每個屬性進行換行。 // - aligned-multiple: 當超出折行長度時,將屬性進行垂直對齊。
  },
  "prettyhtml": {
    "printWidth": 100,
    "singleQuote": false,
    "wrapAttributes": true,
    "sortAttributes": true
  },
  "prettier": {
    "semi": false,
    "singleQuote": true
  }
},
"emmet.syntaxProfiles": {
  "vue-html": "html",
  "vue": "html"
},
"vetur.validation.template": false,
"eslint.options": {
  "plugins": ["html"]
},
"eslint.nodePath": "D:\\Program Files\\nodejs\\node_global\\node_modules",
"eslint.validate": ["javascript", "javascriptreact", "vue", "html"],
"explorer.confirmDelete": false,

"editor.codeActionsOnSave": {
  "source.fixAll.eslint": true
},
"[jsonc]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
  "editor.defaultFormatter": "octref.vetur"
},
"[javascript]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
},


"git.suggestSmartCommit": false,

// "workbench.colorTheme": "SynthWave '84",
// "workbench.preferredDarkColorTheme": "SynthWave '84",
// "workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 1.2,
// "workbench.startupEditor": "newUntitledFile"

}

相關文章