We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96bdfdd commit 5e6cac3Copy full SHA for 5e6cac3
.golangci.yml
@@ -0,0 +1,39 @@
1
+# Visit https://golangci-lint.run/ for usage documentation and information on other useful linters
2
+issues:
3
+ max-per-linter: 0
4
+ max-same-issues: 0
5
+
6
+ exclude-rules:
7
+ # disable funlen for test funcs
8
+ - source: "^func Test"
9
+ linters:
10
+ - funlen
11
12
+linters:
13
+ disable-all: true
14
+ enable:
15
+ - bidichk
16
+ - durationcheck
17
+ - decorder
18
+ - dogsled
19
+ - errcheck
20
+ - exportloopref
21
+ - forcetypeassert
22
23
+ - godot
24
+ - godox
25
+ - gofmt
26
+ - gosimple
27
+ - goconst
28
+ - ineffassign
29
+ - makezero
30
+ - misspell
31
+ - nilerr
32
+ - predeclared
33
+ - staticcheck
34
+ - tenv
35
+ - unconvert
36
+ - unparam
37
+ - unused
38
+ - vet
39
0 commit comments