{
? "eslint.enable": true, //啟用eslint
? "eslint.autoFixOnSave": true, //保存時自動lint
? "no-mixed-spaces-and-tabs": [
? ? 1,
? ? false
? ], //禁止混用tab和空格
? "editor.insertSpaces": false, //禁止自動添加空格脐供,因為我們前面定義使用tab縮進叹洲,如果你使用空格縮進請忽略
? // "editor.insertSpaces": true,
? "editor.tabSize": 2,
? "eslint.validate": [
? ? "javascript",
? ? "javascriptreact",
? ? "html",
? ? {
? ? ? "language": "html",
? ? ? "autoFix": true
? ? },
? ? {
? ? ? "language": "vue",
? ? ? "autoFix": true
? ? },
? ? {
? ? ? "language": "javascript",
? ? ? "autoFix": true
? ? },
? ],
? "eslint.options": {
? ? //這里為你項目中配置的.eslintrc.js文件若河,這樣保存時效驗的規(guī)則就和項目一致了扬绪,只需輕輕一按? ctrl+s? 完美格式化深员,麻麻再也不用擔心我的格式了
? ? "configFile": "F:/workCode/web-fronted-exchange/.eslintrc.js",
? },
? "window.zoomLevel": 0,
? "editor.fontSize": 20,
? "workbench.colorTheme": "Monokai"
}