欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > > 文章正文

个人vscode配置(持续更新),vscode配置持续更新

来源: javaer 分享于  点击 24637 次 点评:86

个人vscode配置(持续更新),vscode配置持续更新


{
    "editor.tabSize": 2,
    "files.associations": {
        "*.vue": "vue"
    },
    "eslint.autoFixOnSave": true,
    "eslint.options": {
        "extensions": [
            ".js",
            ".vue"
        ]
    },
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "eslint.validate": [
        "javascript",
        {
            "language": "vue",
            "autoFix": true
        },
        "javascriptreact",
        "vue",
        "html",
        "vue-html"
    ],
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/dist": true
    },
    "emmet.syntaxProfiles": {
        "javascript": "jsx",
        "vue": "html",
        "vue-html": "html"
    },
    "git.confirmSync": false,
    "window.zoomLevel": 1,
    "vsicons.projectDetection.autoReload": true,
    // "typescript.check.tscVersion": false,
    "editor.renderWhitespace": "boundary",
    "editor.cursorBlinking": "smooth",
  //"workbench.colorTheme": "Visual Studio Light",
  "workbench.iconTheme": "vscode-icons",
    "editor.minimap.enabled": true,
    "editor.minimap.renderCharacters": false,
    // "tslint.autoFixOnSave": true,
    //"editor.fontFamily": "'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
    "beautify.tabSize": 2,
    "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
    // "typescript.extension.sortImports.maxNamedImportsInSingleLine": 5,
    // "typescript.extension.sortImports.omitSemicolon": true,
    "editor.codeLens": true,
  "editor.snippetSuggestions": "top",
  "sublimeTextKeymap.promptV3Features": true,
  "editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"vetur.validation.template": false,
"workbench.colorCustomizations": {
    "tab.activeBackground": "#282c34",
    "activityBar.background": "#282c34",
    "editorGroup.background": "#282c34",
    "sideBar.background": "#282c34"
},
"workbench.colorTheme": "Palenight Theme",
"files.autoSave": "afterDelay",
"go.buildOnSave": true,
"go.lintOnSave": true,
"go.vetOnSave": true,
"go.buildTags": "",
"go.buildFlags": [],
"go.lintFlags": [],
"go.vetFlags": [],
"go.coverOnSave": false,
"go.useCodeSnippetsOnFunctionSuggest": false,
"go.formatOnSave": true,
"go.formatTool": "goreturns",
"go.goroot": "C:\\Users\\Strongboy\\go",
"go.gopath": "D:\\WorkSpace\\Go",
"go.gocodeAutoBuild": false
}

相关文章

    暂无相关文章

用户点评