-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
104 lines (104 loc) · 1.71 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
formatters:
enable:
- gofmt
exclusions:
paths:
- .*_mock\.go
- mock_.*\.go
- .*/pkg/mod/.*$
- .*/go/src/.*\.go
- third_party$
- builtin$
- examples$
settings:
gofmt:
simplify: true
goimports:
local-prefixes:
- go.opentelemetry.io
issues:
max-issues-per-linter: 50
linters:
default: none
enable:
- asciicheck
- bodyclose
- dogsled
- durationcheck
- errcheck
- errorlint
- exhaustive
- forbidigo
- forcetypeassert
- goconst
- gocritic
- gocyclo
- godot
- gosec
- govet
- ineffassign
- misspell
- nestif
- nilerr
- nlreturn
- noctx
- prealloc
- predeclared
- revive
- sqlclosecheck
- staticcheck
- unconvert
- unused
- whitespace
- wrapcheck
- wsl
exclusions:
paths:
- .*_mock\.go
- mock_.*\.go
- .*/pkg/mod/.*$
- .*/go/src/.*\.go
- third_party$
- builtin$
- examples$
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
settings:
depguard:
rules:
main:
allow:
- $all
dupl:
threshold: 99
errcheck:
check-blank: false
check-type-assertions: false
goconst:
min-len: 3
min-occurrences: 2
gocyclo:
min-complexity: 18
govet:
disable:
- shadow
misspell:
ignore-rules:
- cancelled
locale: US
revive:
severity: warning
output:
formats:
text:
path: stdout
print-issued-lines: true
print-linter-name: true
run:
concurrency: 4
issues-exit-code: 1
tests: false
version: "2"