updates go and adds coverage

This commit is contained in:
Hyatt 2024-03-27 12:16:46 -05:00
parent 42ab431856
commit 96fcc105cc
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -1,6 +1,5 @@
{
"cSpell.language": "en,en-US",
"cSpell.checkLimit": 5000,
"editor.fontFamily": "\"Hack\", monospace",
"editor.fontSize": 14,
@ -20,8 +19,8 @@
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 2000,
"files.associations": {
"*.jenkins": "jenkins",
"*.tpl": "html",
"*.jenkins": "groovy",
"*.tplt": "html",
"*.json": "json",
"*.jsonc": "jsonc"
},
@ -30,20 +29,26 @@
"git.autofetch": true,
"git.enableSmartCommit": true,
"git.untrackedChanges": "separate",
"comment.git.enableCommitSigning": "Enable if we wantt o sign git commits.",
"git.enableCommitSigning": false,
"go.goroot": "/home/nhyatt/.apps/go",
"go.buildFlags": [],
"go.coverOnSave": true,
"go.coverageDecorator": {
"type": "gutter",
"coveredGutterStyle": "verticalgreen",
"uncoveredGutterStyle": "verticalred"
},
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"go.lintOnSave": "package",
"go.lintTool": "golangci-lint",
"go.gopath": "${HOME}/.cache/go",
"go.goroot": "${HOME}/.apps/go",
"go.lintFlags": [
"--fast"
],
"go.vetOnSave": "package",
"go.lintOnSave": "package",
"go.lintTool": "golangci-lint",
"go.toolsManagement.autoUpdate": true,
"go.useLanguageServer": true,
"go.vetOnSave": "package",
"telemetry.telemetryLevel": "off",
@ -73,7 +78,7 @@
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
}
},
@ -94,6 +99,9 @@
"editor.insertSpaces": false
},
"git.openRepositoryInParentFolders": "never",
"editor.stickyScroll.enabled": false,
"comments.plugins": {
"Code Spell Checker": "streetsidesoftware.code-spell-checker",
"Git Graph": "mhutchie.git-graph",