-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy path.golangci.yml
More file actions
45 lines (45 loc) · 944 Bytes
/
.golangci.yml
File metadata and controls
45 lines (45 loc) · 944 Bytes
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
version: "2"
linters:
default: none
enable:
- asciicheck
- copyloopvar
- depguard
- exhaustive
- govet
- ineffassign
- misspell
- nolintlint
- prealloc
- staticcheck
- unconvert
- unparam
- unused
- usetesting
settings:
depguard:
rules:
random:
deny:
- pkg: "math/rand$"
desc: use math/rand/v2
- pkg: "golang.org/x/exp/rand"
desc: use math/rand/v2
# see https://github.com/ldez/usetesting/issues/10
usetesting:
context-background: false
context-todo: false
exclusions:
rules:
- linters:
- staticcheck
text: 'SA1019:.+quic\.ConnectionTracing(ID|Key)'
- linters:
- staticcheck
path: _test\.go
text: 'SA1029:' # inappropriate key in call to context.WithValue
formatters:
enable:
- gofmt
- gofumpt
- goimports