golangci-lint: sort linters in config file

THis makes it easier to find which linters are enabled when going through
the list.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-08-31 09:18:36 +02:00
parent 3ebeb6d79b
commit 0eaace3066
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C

View File

@ -1,19 +1,19 @@
linters:
enable:
- structcheck
- varcheck
- staticcheck
- unconvert
- exportloopref # Checks for pointers to enclosing loop variables
- gofmt
- goimports
- revive
- ineffassign
- vet
- unused
- misspell
- gosec
- exportloopref # Checks for pointers to enclosing loop variables
- ineffassign
- misspell
- revive
- staticcheck
- structcheck
- tenv # Detects using os.Setenv instead of t.Setenv since Go 1.17
- unconvert
- unused
- varcheck
- vet
disable:
- errcheck