1

时间:2020-10-21
本文章向大家介绍1,主要包括1使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

{
"files.autoSave": "afterDelay",
"[git-commit]": {

    "editor.rulers": [
        72
    ]
},
"go.useLanguageServer": true, 
"[scss]": {

    "editor.suggest.insertMode": "replace"
},

"window.zoomLevel": 0,
"explorer.confirmDelete": false,
"go.lintFlags": [
    "--disable=varcheck",
    "--enable=errcheck"
],
"workbench.editor.showTabs": true,
"workbench.editor.enablePreview": false,
"workbench.statusBar.visible": true,
"go.enableCodeLens": {

    "references": false,
    "runtest": true
},
"go.languageServerExperimentalFeatures": {


    "diagnostics": true,
    "documentLink": true
},
"git.autofetch": true,
"vscode-mysql.resultTheme": "Dark",
"workbench.iconTheme": "vscode-great-icons",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"leetcode.endpoint": "leetcode-cn",
"markdown.preview.breaks": true,
"leetcode.workspaceFolder": "C:\\Users\\99347\\.leetcode",
"leetcode.defaultLanguage": "python3",
"files.associations": {
},
"workbench.startupEditor": "newUntitledFile",
"eslint.codeAction.showDocumentation": {
    "enable": true,
    "editor.codeActionsOnSave": {
        "source.fixAll": true,
    },
},
"markdown.extension.toc.omittedFromToc": {


},
"[markdown]": {

    "editor.wordWrap": "on",
    "editor.quickSuggestions": false
},
"editor.codeActionsOnSave": null,
"editor.mouseWheelZoom": true,
"remote.SSH.showLoginTerminal": true,
"git.ignoreLegacyWarning": true,
"settingsSync.ignoredSettings": [
    

],
"[go]": {

    "editor.insertSpaces": false,
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
        "source.organizeImports": true
    }
},
"extensions.ignoreRecommendations": true,
"go.autocompleteUnimportedPackages": true,
"diffEditor.ignoreTrimWhitespace": false,
"go.delveConfig": {

    "dlvLoadConfig": {
        "followPointers": true,
        "maxVariableRecurse": 1,
        "maxStringLen": 64,
        "maxArrayValues": 64,
        "maxStructFields": -1
    },
    "apiVersion": 2,
    "showGlobalVariables": true
},
"go.gotoSymbol.includeImports": true,
"leetcode.hint.configWebviewMarkdown": false,
"go.alternateTools": {


},
"remote.SSH.remotePlatform": {
    "zhaohaiyu.com": "linux"
},
"go.overwriteGoplsMiddleware": {

},
"bracketPairColorizer.activeScopeCSS": [

    "borderStyle : solid",
    "borderWidth : 1px",
    "borderColor : {color}; opacity: 0.5"
]

}

原文地址:https://www.cnblogs.com/zhaohaiyu/p/13855123.html