18 lines
326 B
YAML
18 lines
326 B
YAML
|
|
# TASK-QA-003: golangci-lint config for Veza Backend API (v2)
|
||
|
|
# v0.9.4 Quality Gates — minimal config (govet, gofmt, goimports)
|
||
|
|
# errcheck/staticcheck deferred until existing issues are fixed
|
||
|
|
version: "2"
|
||
|
|
|
||
|
|
run:
|
||
|
|
timeout: 5m
|
||
|
|
|
||
|
|
formatters:
|
||
|
|
enable:
|
||
|
|
- gofmt
|
||
|
|
- goimports
|
||
|
|
|
||
|
|
linters:
|
||
|
|
default: none
|
||
|
|
enable:
|
||
|
|
- govet
|