2021-10-27 15:07:19 +08:00
|
|
|
---
|
|
|
|
run:
|
2021-11-13 17:11:03 +08:00
|
|
|
timeout: 10m
|
2021-10-27 15:08:24 +08:00
|
|
|
|
|
|
|
issues:
|
|
|
|
skip-dirs:
|
|
|
|
- gen
|
2021-11-13 16:53:34 +08:00
|
|
|
linters:
|
|
|
|
enable-all: true
|
|
|
|
disable:
|
|
|
|
- exhaustivestruct
|
|
|
|
- revive
|
|
|
|
- lll
|
|
|
|
- interfacer
|
|
|
|
- scopelint
|
|
|
|
- maligned
|
|
|
|
- golint
|
|
|
|
- gofmt
|
|
|
|
- gochecknoglobals
|
|
|
|
- gochecknoinits
|
|
|
|
- gocognit
|
|
|
|
- funlen
|
|
|
|
- exhaustivestruct
|
|
|
|
- tagliatelle
|
|
|
|
- godox
|
2021-11-13 17:11:03 +08:00
|
|
|
- ireturn
|
2021-11-13 16:53:34 +08:00
|
|
|
|
|
|
|
# We should strive to enable these:
|
|
|
|
- wrapcheck
|
|
|
|
- dupl
|
2021-11-15 01:03:21 +08:00
|
|
|
- makezero
|
2021-11-13 16:53:34 +08:00
|
|
|
|
|
|
|
# We might want to enable this, but it might be a lot of work
|
|
|
|
- cyclop
|
|
|
|
- nestif
|
2021-11-14 23:49:54 +08:00
|
|
|
- wsl # might be incompatible with gofumpt
|
2021-11-16 00:26:41 +08:00
|
|
|
- testpackage
|
2021-11-16 02:42:44 +08:00
|
|
|
- paralleltest
|
2021-11-16 00:16:16 +08:00
|
|
|
|
|
|
|
linters-settings:
|
|
|
|
varnamelen:
|
|
|
|
ignore-type-assert-ok: true
|
|
|
|
ignore-map-index-ok: true
|
|
|
|
ignore-names:
|
|
|
|
- err
|
|
|
|
- db
|
|
|
|
- id
|
|
|
|
- ip
|
|
|
|
- ok
|
|
|
|
- c
|
2022-02-21 23:10:20 +08:00
|
|
|
- tt
|
2021-11-24 18:13:41 +08:00
|
|
|
|
|
|
|
gocritic:
|
|
|
|
disabled-checks:
|
|
|
|
- appendAssign
|
|
|
|
# TODO(kradalby): Remove this
|
|
|
|
- ifElseChain
|