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:25:30 -04:00
parent deee49de54
commit 596d2e0998
-2
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