Created
April 17, 2020 14:23
-
-
Save jcgregorio/765e94f4fa866fd2f4e75d5981ab9410 to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.find.autoFindInSelection": "always", | |
"go.testFlags": [ | |
"-count=1" | |
], | |
"go.delveConfig": { | |
"useApiV1": false, | |
"dlvLoadConfig": { | |
"followPointers": true, | |
"maxVariableRecurse": 3, | |
"maxStringLen": 400, | |
"maxArrayValues": 100, | |
"maxStructFields": -1 | |
} | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.tslint": true | |
}, | |
"go.lintOnSave": "file", | |
"go.useLanguageServer": true, | |
"go.languageServerExperimentalFeatures": { | |
"format": true, | |
"autoComplete": true, | |
"rename": true, | |
"goToDefinition": true, | |
"hover": true, | |
"signatureHelp": true, | |
"goToTypeDefinition": true, | |
"goToImplementation": true, | |
"documentSymbols": true, | |
"workspaceSymbols": true, | |
"findReferences": true, | |
"diagnostics": true, | |
"documentLink": true | |
}, | |
"git.enableSmartCommit": true, | |
"go.formatTool": "goimports", | |
"editor.wordWrap": "on", | |
"editor.wordWrapColumn": 80, | |
"editor.wrappingIndent": "same", | |
"editor.formatOnSave": true, | |
"rewrap.autoWrap.enabled": false, | |
"go.autocompleteUnimportedPackages": true, | |
"explorer.confirmDragAndDrop": false, | |
"go.lintFlags": [ | |
"-min_confidence=.9" | |
], | |
"eslint.alwaysShowStatus": true, | |
"eslint.format.enable": true, | |
"go.formatFlags": [ | |
"-s" | |
], | |
"[javascript]": { | |
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | |
}, | |
"prettier.disableLanguages": [ | |
"javascript" | |
], | |
"prettier.singleQuote": true, | |
"window.zoomLevel": 0, | |
"terminal.integrated.allowChords": false, | |
"[python]": {}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment