fix: remove deprecated linter

This commit is contained in:
carr0t2 2022-10-24 01:12:00 +08:00
parent 0f17a1d7b6
commit b8759530e9
1 changed files with 2 additions and 6 deletions

View File

@ -8,7 +8,6 @@ run:
linters:
enable:
- 'asciicheck'
- 'deadcode'
- 'depguard'
- 'dogsled'
- 'errorlint'
@ -29,7 +28,8 @@ linters:
- 'revive'
- 'typecheck'
- 'unconvert'
- 'varcheck'
# The linter 'varcheck' 'deadcode' 'structcheck' is deprecated (since v1.49.0), use 'unused' instead.
- 'unused'
- 'whitespace'
disable:
# unsupported lint with golang 1.18+ ref: https://github.com/golangci/golangci-lint/issues/2649
@ -38,9 +38,7 @@ linters:
- 'noctx'
- 'sqlclosecheck'
- 'staticcheck'
- 'structcheck'
- 'stylecheck'
- 'unused'
- 'errcheck'
issues:
@ -62,8 +60,6 @@ issues:
exclude-rules:
- path: internal/browser/browser\.go
linters:
- 'deadcode'
- 'varcheck'
- 'unused'
max-issues-per-linter: 0
max-same-issues: 0