Skip to content

Commit

Permalink
Merge pull request #330 from apigee/vscode1.1
Browse files Browse the repository at this point in the history
improve vscode settings
  • Loading branch information
ssvaidyanathan authored Nov 9, 2023
2 parents 8e1b916 + 8f0e343 commit 5693a22
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@
},
"go.useLanguageServer": true,
"go.lintTool": "golangci-lint",
"go.lintOnSave": "workspace",
"go.vetOnSave": "workspace",
"go.lintFlags": [
"--fast",
],
"go.lintOnSave": "file",
"go.formatTool": "goimports",
"go.vetOnSave": "package",
"[go]": {
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.defaultFormatter": "golang.go"
},
// YAML Config
Expand Down

0 comments on commit 5693a22

Please sign in to comment.