fleet/.vscode/settings.json
Zach Wasserman 005525c88a
Add vscode configs (#2347)
This only effects contributor experience.

- Run Docker dependencies and Webpack when opening project.
- Run/debug configs for Fleet server and UI.
- Basic settings.
2021-10-04 10:14:04 -07:00

31 lines
886 B
JSON

{
"makefile.extensionOutputFolder": "./.vscode",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"diffEditor.codeLens": true,
"rewrap.autoWrap.enabled": true,
"rewrap.wrappingColumn": 100,
"go.formatTool": "gofumports",
"go.lintTool": "golangci-lint",
"go.useLanguageServer": true,
"gopls": {
"gofumpt": true,
},
"go.autocompleteUnimportedPackages": true,
"go.buildTags": "full,fts5",
"go.delveConfig": {
"dlvLoadConfig": {
"followPointers": true,
"maxVariableRecurse": 1,
"maxStringLen": 256,
"maxArrayValues": 64,
"maxStructFields": -1
},
"apiVersion": 2,
"showGlobalVariables": true,
"debugAdapter": "legacy",
"substitutePath": []
},
"go.testTimeout": "60s"
}