trepa/.vscode/settings.json
qpismont 2445b82395
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
Update golangci-lint version to 2.1.2 and adjust CI lint command for improved performance.
2025-04-17 21:21:04 +00:00

16 lines
No EOL
321 B
JSON

{
"editor.formatOnSave": true,
"go.lintTool": "golangci-lint",
"go.lintFlags": [
"--path-mode=abs",
"--fast-only"
],
"go.formatTool": "custom",
"go.alternateTools": {
"customFormatter": "golangci-lint"
},
"go.formatFlags": [
"fmt",
"--stdin"
]
}