mirror of
https://github.com/kairos-io/immucore.git
synced 2025-04-27 11:12:30 +00:00
24 lines
536 B
YAML
24 lines
536 B
YAML
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
|
|
- gocyclo # check complexity
|
|
- govet
|
|
- gosimple
|
|
- ineffassign
|
|
- unused
|
|
- staticcheck
|
|
- typecheck
|
|
- godot
|
|
- misspell
|
|
- zerologlint
|
|
- ginkgolinter
|
|
- gocheckcompilerdirectives
|