summaryrefslogtreecommitdiffstats
path: root/.golangci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 358a5d12a..de90dc516 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -13,6 +13,7 @@ linters:
- unconvert
- exhaustive
- makezero
+ - nakedret
# - goconst # TODO: enable and fix issues
fast: false
@@ -20,5 +21,9 @@ linters-settings:
exhaustive:
default-signifies-exhaustive: true
+ nakedret:
+ # the gods will judge me but I just don't like naked returns at all
+ max-func-lines: 0
+
run:
go: 1.18