Files
fission-src/.golangci.yaml
T
2025-05-17 13:42:45 +05:30

37 lines
626 B
YAML

version: "2"
linters:
enable:
- misspell
- nakedret
- promlinter
- unconvert
settings:
errcheck:
exclude-functions:
- (*go.uber.org/zap.Logger).Sync
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- gofmt
- goimports
settings:
goimports:
local-prefixes:
- github.com/fission/fission
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$