@@ -45,7 +45,6 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
45
45
enable :
46
46
- asciicheck # Simple linter to check that your code does not contain non-ASCII identifiers
47
47
- bodyclose # Checks whether HTTP response body is closed successfully
48
- - deadcode # Finds unused code
49
48
- depguard # Go linter that checks if package imports are in a list of acceptable packages
50
49
- dogsled # Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f())
51
50
- dupl # Tool for code clone detection
@@ -74,14 +73,12 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
74
73
- prealloc # Finds slice declarations that could potentially be preallocated
75
74
- rowserrcheck # Checks whether Err of rows is checked successfully
76
75
- staticcheck # Staticcheck is a go vet on steroids, applying a ton of static analysis checks
77
- - structcheck # Finds unused struct fields
78
76
- stylecheck # Stylecheck is a replacement for golint
79
77
- tparallel # detects inappropriate usage of t.Parallel() method in your Go test codes
80
78
- typecheck # Like the front-end of a Go compiler, parses and type-checks Go code
81
79
- unconvert # Remove unnecessary type conversions
82
80
- unparam # Reports unused function parameters
83
81
- unused # Checks Go code for unused constants, variables, functions and types
84
- - varcheck # Finds unused global variables and constants
85
82
- whitespace # Tool for detection of leading and trailing whitespace
86
83
87
84
issues :
0 commit comments