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 ad76022 commit da074e2Copy full SHA for da074e2
.golangci.yml
@@ -0,0 +1,40 @@
1
+linters-settings:
2
+ govet:
3
+ check-shadowing: true
4
+ golint:
5
+ min-confidence: 0
6
+ gocyclo:
7
+ min-complexity: 13 # Should be 10 but was brought to 13 to speed up the development
8
+ maligned:
9
+ suggest-new: true
10
+ dupl:
11
+ threshold: 100
12
+ goconst:
13
+ min-len: 2
14
+ min-occurrences: 2
15
+
16
+ misspell:
17
+ locale: US
18
19
+linters:
20
+ enable-all: true
21
+ disable:
22
+ - deadcode
23
+ - dupl
24
+ - errcheck
25
+ - goconst
26
+ - gocyclo
27
+ - gofmt
28
+ - govet
29
+ - ineffassign
30
+ - interfacer
31
+ - lll
32
+ - maligned
33
+ - megacheck
34
35
+ - misspell
36
+ - nakedret
37
+ - prealloc
38
+ - unconvert
39
+ - unparam
40
+ - varcheck
0 commit comments