1. 程式人生 > >VScode開發Vue項目,關閉eslint代碼檢查,以及相關配置

VScode開發Vue項目,關閉eslint代碼檢查,以及相關配置

img image http com false span inf lin bubuko

剛開始打開vue項目的時候會發現vue代碼報紅,解決方式如下

技術分享圖片

首先安裝Vetur和ESLint

技術分享圖片

打開文件》首選項》設置,配置如下代碼

{
    "explorer.confirmDelete": false,
    "vetur.validation.template": false,
    "eslint.autoFixOnSave": true,
    "files.autoSave":"off",
    "eslint.validate": [
       "javascript",
       "javascriptreact",
       "html
", { "language": "vue", "autoFix": true } ], "eslint.options": { "plugins": ["html"] }, //為了符合eslint的兩個空格間隔原則 "editor.tabSize": 2 }

重新加載項目就行了

VScode開發Vue項目,關閉eslint代碼檢查,以及相關配置