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.
1 parent eb54ab3 commit 74a36e5Copy full SHA for 74a36e5
.golangci.yml
@@ -1,5 +1,6 @@
1
+---
2
run:
- deadline: 5m
3
+ timeout: 5m
4
allow-parallel-runners: true
5
6
issues:
@@ -19,9 +20,10 @@ issues:
19
20
linters:
21
disable-all: true
22
enable:
23
+ - copyloopvar
24
- dupl
25
- errcheck
- - exportloopref
26
+ - ginkgolinter
27
- goconst
28
- gocyclo
29
- gofmt
@@ -33,8 +35,14 @@ linters:
33
35
- misspell
34
36
- nakedret
37
- prealloc
38
+ - revive
39
- staticcheck
40
- typecheck
41
- unconvert
42
- unparam
43
- unused
44
+
45
+linters-settings:
46
+ revive:
47
+ rules:
48
+ - name: comment-spacings
0 commit comments