Skip to content

Instantly share code, notes, and snippets.

@jcgregorio
Created April 17, 2020 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcgregorio/765e94f4fa866fd2f4e75d5981ab9410 to your computer and use it in GitHub Desktop.
Save jcgregorio/765e94f4fa866fd2f4e75d5981ab9410 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"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