fleet/.vscode/settings.json
Gabriel Hernandez 2fcc5ee72e
generate js coverage report in CI (#12029)
relates to #8771

Add coverage for frontend and improve coverage reports around Backend
and frontend code.
2023-06-01 17:46:25 +01:00

43 lines
1.2 KiB
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": "5m",
"go.testEnvVars": {
"MYSQL_TEST": "1",
"REDIS_TEST": "1"
},
"html.format.templating": true,
"html.format.wrapAttributes": "preserve",
"html.format.wrapLineLength": 0,
"prettier.requireConfig": true,
"yaml.schemas": {
"https://json.schemastore.org/codecov.json": ".github/workflows/codecov.yml"
}
}