2 files changed,
7 insertions(+),
7 deletions(-)
jump to
| M | README.md |
| M | vscode/settings.json |
M
vscode/settings.json
··· 38 38 "extensions.ignoreRecommendations": true, 39 39 "gitlens.codeLens.enabled": true, 40 40 // Languages 41 + "go.lintOnSave": "package", 42 + "go.lintTool": "golangci-lint", 43 + "go.formatTool": "gofumpt", 41 44 "[go]": { 42 - "editor.insertSpaces": false, 43 - "go.lintOnSave": "package", 44 - "go.lintTool": "golint", 45 - "go.formatTool": "gofumpt" 45 + "editor.insertSpaces": false 46 46 }, 47 47 "[python]": { 48 48 "python.formatting.provider": "black", 49 49 "python.analysis.autoImportCompletions": true, 50 50 "python.formatting.blackPath": "~/.local/bin/black", 51 - "editor.tabSize": 4, 51 + "editor.tabSize": 4 52 52 }, 53 53 "[javascript]": { 54 54 "editor.defaultFormatter": "esbenp.prettier-vscode", ··· 60 60 "typescript.suggestionActions.enabled": false, 61 61 "editor.tabSize": 2 62 62 } 63 -} 63 +}