We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 402e0bf + b73efda commit 643f4c8Copy full SHA for 643f4c8
.golangci.yml
@@ -27,10 +27,11 @@ linters-settings:
27
depguard:
28
rules:
29
main:
30
- list-mode: lax
31
deny:
32
- - pkg: io/ioutil
33
- desc: The io/ioutil package has been deprecated. https://go.dev/doc/go1.16#ioutil
+ # The io/ioutil package has been deprecated.
+ # https://go.dev/doc/go1.16#ioutil
+ - pkg: "io/ioutil"
34
+ desc: The io/ioutil package has been deprecated.
35
forbidigo:
36
forbid:
37
- '^fmt\.Errorf(# use errors\.Errorf instead)?$'
@@ -42,3 +43,7 @@ issues:
42
43
- linters:
44
- revive
45
text: "stutters"
46
+
47
+# show all
48
+max-issues-per-linter: 0
49
+max-same-issues: 0
0 commit comments