summaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-02-20 01:34:02 +0100
committerValery Piashchynski <[email protected]>2023-02-20 01:34:02 +0100
commitfe354ba01213ea5444b6062ac9cb445ec46fa9bd (patch)
treefcb28a9169a4e8a69f6efefb2265d736ae45a943 /.golangci.yml
parentfae6fef3097a3b885df4eb856a4da21498d84295 (diff)
chore: remove buggy typecheck linter
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml1
1 files changed, 0 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index aa2d665b..26ab6b43 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -75,7 +75,6 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
- staticcheck # Staticcheck is a go vet on steroids, applying a ton of static analysis checks
- 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