2022-04-01 16:16:46 +00:00
|
|
|
run:
|
|
|
|
linters-settings:
|
|
|
|
linters:
|
|
|
|
disable-all: true
|
|
|
|
enable:
|
|
|
|
- asciicheck
|
|
|
|
- deadcode
|
|
|
|
- exhaustive
|
|
|
|
- exportloopref
|
2023-02-22 21:58:17 +00:00
|
|
|
- goconst
|
2022-04-01 16:16:46 +00:00
|
|
|
- gofmt # redundant, since gofmt *should* be a no-op after gofumpt
|
|
|
|
- gofumpt
|
2023-02-22 21:58:17 +00:00
|
|
|
- goimports
|
2022-04-01 16:16:46 +00:00
|
|
|
- gosimple
|
|
|
|
- ineffassign
|
|
|
|
- misspell
|
|
|
|
- prealloc
|
2023-02-22 21:58:17 +00:00
|
|
|
- scopelint
|
2022-04-01 16:16:46 +00:00
|
|
|
- staticcheck
|
|
|
|
- stylecheck
|
|
|
|
- structcheck
|
|
|
|
- unconvert
|
|
|
|
- unparam
|
|
|
|
- unused
|
|
|
|
- varcheck
|
|
|
|
- vet
|
|
|
|
|