gpaste/.golangci.yml

35 lines
510 B
YAML
Raw Permalink Normal View History

2022-01-24 19:25:52 +00:00
run:
tests: false
linters:
enable:
- deadcode
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- structcheck
- typecheck
- unused
- varcheck
- gosec
- asciicheck
- bidichk
- bodyclose
- gomnd
- ifshort
- misspell
- prealloc
- tagliatelle
- ireturn
- gocritic
- whitespace
- wsl
- stylecheck
- exportloopref
- godot
2022-01-24 19:32:49 +00:00
2022-01-24 19:25:52 +00:00
linters-settings:
gomnd:
ignored-functions:
- "strconv.ParseUint"