2021-01-28 23:25:14 +00:00
|
|
|
---
|
|
|
|
linters:
|
|
|
|
disable-all: true
|
|
|
|
enable:
|
|
|
|
- bodyclose
|
|
|
|
- deadcode
|
|
|
|
- errcheck
|
|
|
|
- gochecknoglobals
|
|
|
|
- goconst
|
|
|
|
- gocritic
|
|
|
|
- gofmt
|
|
|
|
- goimports
|
|
|
|
- goprintffuncname
|
|
|
|
- gosec
|
|
|
|
- gosimple
|
|
|
|
- govet
|
|
|
|
- ineffassign
|
|
|
|
- misspell
|
|
|
|
- nakedret
|
|
|
|
- prealloc
|
|
|
|
- staticcheck
|
|
|
|
- structcheck
|
|
|
|
- stylecheck
|
|
|
|
- typecheck
|
|
|
|
- unconvert
|
|
|
|
- unparam
|
|
|
|
- unused
|
|
|
|
- varcheck
|
|
|
|
- whitespace
|
|
|
|
- wsl
|
|
|
|
- godot
|
|
|
|
- asciicheck
|
|
|
|
- nolintlint
|
|
|
|
- gofumpt
|
|
|
|
- goerr113
|
|
|
|
- tparallel
|
|
|
|
- errorlint
|
|
|
|
- paralleltest
|
2021-05-05 20:03:28 +00:00
|
|
|
- forbidigo
|
|
|
|
- makezero
|
|
|
|
- thelper
|
|
|
|
- predeclared
|
|
|
|
- ifshort
|
|
|
|
- revive
|
|
|
|
- durationcheck
|
2021-05-29 22:25:30 +00:00
|
|
|
- gomoddirectives
|
|
|
|
- importas
|
|
|
|
- nilerr
|
|
|
|
- revive
|
|
|
|
- wastedassign
|
2021-12-11 23:05:15 +00:00
|
|
|
- bidichk
|
|
|
|
- contextcheck
|
|
|
|
- ireturn
|
|
|
|
- nilnil
|
|
|
|
- tenv
|
2022-01-28 22:48:40 +00:00
|
|
|
- nestif
|
2022-02-07 19:30:09 +00:00
|
|
|
- grouper
|
|
|
|
- decorder
|
|
|
|
- containedctx
|
2021-01-28 23:25:14 +00:00
|
|
|
|
|
|
|
# - wrapcheck # TODO: v3 Fix
|
|
|
|
# - testpackage # TODO: Fix testpackage
|
2021-05-29 22:25:30 +00:00
|
|
|
# - noctx # TODO: Fix noctx
|
2021-01-28 23:25:14 +00:00
|
|
|
|
|
|
|
# don't enable:
|
|
|
|
# - depguard
|
|
|
|
# - dogsled
|
|
|
|
# - dupl
|
|
|
|
# - funlen
|
|
|
|
# - gochecknoinits
|
|
|
|
# - gocognit
|
|
|
|
# - gocyclo
|
|
|
|
# - godox
|
|
|
|
# - gomnd
|
|
|
|
# - lll
|
|
|
|
# - rowserrcheck
|
|
|
|
# - scopelint
|
|
|
|
# - gomodguard
|
|
|
|
# - exhaustive
|
|
|
|
# - nlreturn
|
|
|
|
# - gci
|
|
|
|
# - exhaustivestruct
|
2021-05-05 20:03:28 +00:00
|
|
|
# - cyclop
|
2021-05-29 22:25:30 +00:00
|
|
|
# - promlinter
|
|
|
|
# - tagliatelle
|
2021-12-11 23:05:15 +00:00
|
|
|
# - errname
|
|
|
|
# - varnamelen
|
2022-02-07 19:30:09 +00:00
|
|
|
# - errchkjson
|
|
|
|
# - maintidx
|
2021-05-29 22:25:30 +00:00
|
|
|
|
|
|
|
# depricated
|
|
|
|
# - maligned
|
|
|
|
# - interfacer
|
|
|
|
# - golint
|
2021-01-28 23:25:14 +00:00
|
|
|
|
|
|
|
issues:
|
|
|
|
exclude-rules:
|
|
|
|
- path: _test\.go
|
|
|
|
linters:
|
|
|
|
- gocyclo
|
|
|
|
- errcheck
|
|
|
|
- dupl
|
|
|
|
- gosec
|
|
|
|
|
|
|
|
- linters:
|
|
|
|
- errcheck
|
|
|
|
source: ".((os\\.)?std(out|err)\\..*|.*Close|.*Flush|os\\.Remove(All)?|
|
|
|
|
.*printf?|os\\.(Un)?Setenv)."
|
|
|
|
|
|
|
|
- linters:
|
|
|
|
- stylecheck
|
|
|
|
text: "ST1003:.*(Ts|ts).*TS"
|
|
|
|
|
|
|
|
exclude-use-default: false
|