tokiko/vendor/gopkg.in/ini.v1/.golangci.yml
yakumo.izuru 9278b29d0f Add privilege drop
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/tokiko/trunk@20 8f5ca974-a7f8-e144-9f80-d41d5039c194
2023-10-12 23:38:26 +00:00

28 lines
468 B
YAML

linters-settings:
staticcheck:
checks: [
"all",
"-SA1019" # There are valid use cases of strings.Title
]
nakedret:
max-func-lines: 0 # Disallow any unnamed return statement
linters:
enable:
- deadcode
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- structcheck
- typecheck
- unused
- varcheck
- nakedret
- gofmt
- rowserrcheck
- unconvert
- goimports
- unparam