kairos-agent/.golangci.yml

23 lines
514 B
YAML
Raw Normal View History

2022-07-16 14:29:22 +00:00
run:
timeout: 5m
tests: false
linters:
enable:
- revive # replacement for golint
- dupl # check duplicated code
- goconst # check strings that can turn into constants
- gofmt # check fmt
- goheader # Check license headers, only checks files in current year
- goimports # check imports
2022-07-25 22:26:10 +00:00
- gocyclo # check complexity
- govet
- gosimple
- deadcode
- ineffassign
- unused
- varcheck
- staticcheck
- typecheck
- structcheck
- godot
- misspell