aboutsummaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml18
1 files changed, 16 insertions, 2 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 6d91345..674e3ab 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -69,8 +69,22 @@ linters-settings:
"-ST1000", # at least one file in a package should have a package comment
]
gocritic:
- enabled-checks:
- - emptyStringTest
+ enabled-tags:
+ - diagnostic
+ - experimental
+ - opinionated
+ - performance
+ - style
+ disabled-checks:
+ - deferInLoop
+ - httpNoBody
+ - importShadow
+ - initClause
+ - paramTypeCombine
+ - sloppyReassign
+ - typeUnparen
+ - unnamedResult
+ - whyNoLint
issues:
# Show all issues from a linter.