This removes the directive from .golangci.yml to disable all linters, and fixes the relevant bugs / issues that are exposed.
17 lines
211 B
YAML
17 lines
211 B
YAML
linter-settings:
|
|
lll:
|
|
line-length: 200
|
|
|
|
linters:
|
|
enable:
|
|
- errcheck
|
|
- govet
|
|
- ineffassign
|
|
- golint
|
|
- goconst
|
|
- goimports
|
|
- unused
|
|
- varcheck
|
|
- deadcode
|
|
- misspell
|