You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
436 B
25 lines
436 B
linters: |
|
enable: |
|
- gosimple |
|
- deadcode |
|
- typecheck |
|
- govet |
|
- errcheck |
|
- staticcheck |
|
- unused |
|
- structcheck |
|
- varcheck |
|
- golint |
|
- dupl |
|
- gofmt |
|
- misspell |
|
- gocritic |
|
enable-all: false |
|
disable-all: true |
|
fast: false |
|
|
|
linters-settings: |
|
gocritic: |
|
disabled-checks: |
|
- ifElseChain |
|
- singleCaseSwitch # Every time this occured in the code, there was no other way. |