Skip to content

Commit

Permalink
fix(devcontainer.json): fix settings
Browse files Browse the repository at this point in the history
- organizeImports changed from `true` to `"always"`
- `vulncheck` removed since it is falsely detected as duplicate
  • Loading branch information
qdm12 committed Mar 18, 2024
1 parent a541c67 commit 1585cdd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,12 @@
"go.lintOnSave": "package",
"[go]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "always"
}
},
"gopls": {
"usePlaceholders": false,
"staticcheck": true,
"vulncheck": "Imports"
"staticcheck": true
},
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
Expand Down

0 comments on commit 1585cdd

Please sign in to comment.