golangci: enable 'unused' and disable deprecated replaced by it (#1983)

This commit is contained in:
Unai Martinez-Corral 2023-07-18 15:51:36 +02:00 committed by GitHub
parent c81c46a015
commit 66b215ba18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ linters:
disable-all: true disable-all: true
enable: enable:
#- bodyclose #- bodyclose
- deadcode # - deadcode ! deprecated since v1.49.0; replaced by 'unused'
#- depguard #- depguard
#- dogsled #- dogsled
#- dupl #- dupl
@ -51,12 +51,12 @@ linters:
#- rowserrcheck #- rowserrcheck
#- scopelint #- scopelint
#- staticcheck #- staticcheck
- structcheck #- structcheck ! deprecated since v1.49.0; replaced by 'unused'
#- stylecheck #- stylecheck
#- typecheck #- typecheck
- unconvert - unconvert
#- unparam #- unparam
#- unused - unused
- varcheck # - varcheck ! deprecated since v1.49.0; replaced by 'unused'
#- whitespace #- whitespace
fast: false fast: false