vscode配置

302 阅读1分钟

vetur

    "terminal.integrated.rendererType": "dom",
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "files.associations": {
        "*.vue": "vue"
    },
    "workbench.colorTheme": "Visual Studio Light",
    "emmet.syntaxProfiles":{
        "vue-html": "html",
        "vue": "html"
    },
    "files.associations": {
        "*.vue": "html"
    },
    "files.autoSave":"off",
    "eslint.validate": [
       "javascript",
       "javascriptreact",
       "html",
       { "language": "vue", "autoFix": true }
     ],
     "eslint.options": {
        "plugins": ["html"]
    },
    "tabnine.experimentalAutoImports": true,
    "liveSassCompile.settings.autoprefix": [],
    "liveSassCompile.settings.formats":[
        // 扩展
        {
            "format": "compact",//可定制的出口CSS样式(expanded,compact,compressed,nested)
            "extensionName": ".css",//编译后缀名
            "savePath": null
        } 
        
    ],

    "liveSassCompile.settings.excludeList": [
        "**/node_modules/**",
        ".vscode/**"
    ],
    "workbench.editorAssociations": {
        "*.ipynb": "jupyter-notebook"
    },
    "notebook.cellToolbarLocation": {
        "default": "right",
        "jupyter-notebook": "left"
    },
    "files.associations": {
        "*.vue": "vue"
    },
    "security.workspace.trust.untrustedFiles": "open",
    "window.zoomLevel": 1,
       
}