-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
62 lines (60 loc) · 1.13 KB
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
linters-settings:
dupl:
threshold: 150
goconst:
min-len: 2
min-occurrences: 3
gocritic:
disabled-checks:
- ifElseChain
gofmt:
simplify: false
gomnd:
# don't include the "operation" and "assign"
checks:
- argument
- case
- condition
- return
govet:
check-shadowing: true
lll:
line-length: 120
misspell:
locale: US
nolintlint:
allow-unused: false # report any unused nolint directives
require-explanation: true # don't require an explanation for nolint directives
require-specific: true # don't require nolint directives to be specific about which linter is being skipped
gosec:
severity: medium
confidence: high
whitespace:
multi-if: true
multi-func: true
issues:
max-same-issues: 0
linters:
disable-all: true
enable:
- durationcheck
- errcheck
- exportloopref
- forcetypeassert
- godot
- gofmt
- gosimple
- ineffassign
- makezero
- misspell
- nilerr
- predeclared
- staticcheck
- tenv
- unconvert
- unparam
- unused
- vet
- lll
- unused
- whitespace