migrate/.golangci.yml

20 lines
260 B
YAML
Raw Normal View History

2019-03-22 18:11:31 +00:00
# options for analysis running
run:
tests: false
output:
print-issued-lines: false
linters:
2019-03-22 20:57:00 +00:00
enable:
- interfacer
- unconvert
- goconst
2019-03-22 20:57:00 +00:00
- misspell
- nakedret
- prealloc
2019-03-26 19:01:12 +00:00
- scopelint
2019-03-22 18:11:31 +00:00
disable:
- errcheck
2019-03-26 19:05:47 +00:00
- staticcheck