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 660ea7a commit b9562b2Copy full SHA for b9562b2
.golangci.yml
@@ -1,7 +1,27 @@
1
+linters:
2
+ disable-all: true
3
+ enable:
4
+ - misspell
5
+ - structcheck
6
+ - golint
7
+ - deadcode
8
+ - errcheck
9
+ - varcheck
10
+ - goconst
11
+ - unparam
12
+ - ineffassign
13
+ - nakedret
14
+ - interfacer
15
+ - gocyclo
16
+ - lll
17
+ - dupl
18
+ - goimports
19
+
20
linters-settings:
21
lll:
22
line-length: 170
23
dupl:
24
threshold: 400
25
26
run:
- deadline: 5m
27
+ timeout: 5m
0 commit comments