aboutsummaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 40c1a1e..bfc873b 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -27,7 +27,6 @@ linters:
- gosec
- inamedparam
- ireturn
- - lll
- maintidx
- nakedret
- nestif
@@ -70,3 +69,12 @@ linters-settings:
# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md
rules:
- name: use-any
+ lll:
+ line-length: 130
+
+issues:
+ exclude-rules:
+ # Exclude some linters from running on tests files.
+ - path: _test\.go
+ linters:
+ - lll