Skip to content

Commit d19c248

Browse files
authored
Fix deprecated linter (#6)
1 parent e438cf3 commit d19c248

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.golangci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,13 @@ linters-settings:
5757
linters:
5858
disable-all: true
5959
enable:
60-
- deadcode # Finds unused code
6160
- errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases
6261
- gosimple # Linter for Go source code that specializes in simplifying a code
6362
- govet # Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string
6463
- ineffassign # Detects when assignments to existing variables are not used
6564
- staticcheck # Staticcheck is a go vet on steroids, applying a ton of static analysis checks
6665
- typecheck # Like the front-end of a Go compiler, parses and type-checks Go code
6766
- unused # Checks Go code for unused constants, variables, functions and types
68-
- varcheck # Finds unused global variables and constants
6967
- asasalint # Check for pass []any as any in variadic func(...any)
7068
- asciicheck # Simple linter to check that your code does not contain non-ASCII identifiers
7169
- bidichk # Checks for dangerous unicode character sequences

0 commit comments

Comments
 (0)