2020-05-18 12:59:45 -04:00
|
|
|
linters-settings:
|
|
|
|
golint:
|
|
|
|
min-confidence: 0
|
|
|
|
|
|
|
|
misspell:
|
|
|
|
locale: US
|
|
|
|
|
|
|
|
linters:
|
|
|
|
disable-all: true
|
|
|
|
enable:
|
|
|
|
- typecheck
|
|
|
|
- goimports
|
|
|
|
- misspell
|
|
|
|
- govet
|
2021-05-25 17:17:33 -04:00
|
|
|
- revive
|
2020-05-18 12:59:45 -04:00
|
|
|
- ineffassign
|
|
|
|
- gosimple
|
|
|
|
- deadcode
|
|
|
|
- structcheck
|
2021-03-04 17:27:38 -05:00
|
|
|
- gomodguard
|
|
|
|
- gofmt
|
2021-05-24 12:28:19 -04:00
|
|
|
- unused
|
|
|
|
- structcheck
|
|
|
|
- unconvert
|
2021-05-25 17:17:33 -04:00
|
|
|
- varcheck
|
2021-11-16 12:28:29 -05:00
|
|
|
- gocritic
|
2022-01-06 16:08:21 -05:00
|
|
|
- gofumpt
|
|
|
|
|
|
|
|
linters-settings:
|
|
|
|
gofumpt:
|
|
|
|
lang-version: "1.17"
|
|
|
|
|
|
|
|
# Choose whether or not to use the extra rules that are disabled
|
|
|
|
# by default
|
|
|
|
extra-rules: false
|
2020-05-18 12:59:45 -04:00
|
|
|
|
|
|
|
issues:
|
|
|
|
exclude-use-default: false
|
|
|
|
exclude:
|
|
|
|
- should have a package comment
|
|
|
|
- error strings should not be capitalized or end with punctuation or a newline
|
2021-11-16 12:28:29 -05:00
|
|
|
# todo fix these when we get enough time.
|
|
|
|
- "singleCaseSwitch: should rewrite switch statement to if statement"
|
|
|
|
- "unlambda: replace"
|
|
|
|
- "captLocal:"
|
|
|
|
- "ifElseChain:"
|
|
|
|
- "elseif:"
|
2020-11-21 01:52:17 -05:00
|
|
|
|
2020-05-18 12:59:45 -04:00
|
|
|
service:
|
2021-11-16 12:28:29 -05:00
|
|
|
golangci-lint-version: 1.43.0 # use the fixed version to not introduce new linters unexpectedly
|