summaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-08-25 14:20:00 +0200
committerValery Piashchynski <[email protected]>2022-08-25 14:20:00 +0200
commitcc0c5a9544110240d5467f1c882f82891eada3a2 (patch)
tree5a273e0d79197ff2259f9813c71923e3f8f5d9f3 /.golangci.yml
parenteffcc4135a3f1ba290ae06cbe2536e3237923bee (diff)
release: v2.11.1
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.golangci.yml')
-rwxr-xr-x.golangci.yml3
1 files changed, 0 insertions, 3 deletions
diff --git a/.golangci.yml b/.golangci.yml
index f56c7be0..d3dc54a1 100755
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -45,7 +45,6 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
enable:
- asciicheck # Simple linter to check that your code does not contain non-ASCII identifiers
- bodyclose # Checks whether HTTP response body is closed successfully
- - deadcode # Finds unused code
- depguard # Go linter that checks if package imports are in a list of acceptable packages
- dogsled # Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f())
- dupl # Tool for code clone detection
@@ -77,14 +76,12 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
- prealloc # Finds slice declarations that could potentially be preallocated
- rowserrcheck # Checks whether Err of rows is checked successfully
- staticcheck # Staticcheck is a go vet on steroids, applying a ton of static analysis checks
- - structcheck # Finds unused struct fields
- stylecheck # Stylecheck is a replacement for golint
- tparallel # detects inappropriate usage of t.Parallel() method in your Go test codes
- typecheck # Like the front-end of a Go compiler, parses and type-checks Go code
- unconvert # Remove unnecessary type conversions
- unparam # Reports unused function parameters
- unused # Checks Go code for unused constants, variables, functions and types
- - varcheck # Finds unused global variables and constants
- whitespace # Tool for detection of leading and trailing whitespace
- wsl # Whitespace Linter - Forces you to use empty lines!