golangci: remove deadcode/varcheck

Both linters are not supported anymore and trigger warnings every time
we try to lint our code.

To not see those warnings anymore, we remove them from the
configuration.
This commit is contained in:
Lucas Bajolet 2024-06-07 14:22:31 -04:00 committed by Lucas Bajolet
parent deee49de54
commit 39856d3d58

View file

@ -30,7 +30,6 @@ issues:
linters:
disable-all: true
enable:
- deadcode
- errcheck
- goimports
- gosimple
@ -39,7 +38,6 @@ linters:
- staticcheck
- unconvert
- unused
- varcheck
fast: true
# options for analysis running