vspd/.golangci.yml
Jamie Holdstock 11401c5369
Move vspd into cmd directory. (#352)
* Update linter to 1.49.0

* Move vspd into cmd directory.

This is standard practise in Decred golang repos. Especially useful when multiple executables are built from a single repo.

* Ignore bins in new dir.
2022-09-27 08:54:23 -05:00

31 lines
432 B
YAML

run:
deadline: 10m
linters:
disable-all: true
enable:
- asciicheck
- bidichk
- durationcheck
- errcheck
- errchkjson
- errname
- exhaustive
- exportloopref
- goconst
- gofmt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- nilerr
- revive
- staticcheck
- tparallel
- typecheck
- unconvert
- unparam
- unused
- vetshadow