-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
69 lines (69 loc) · 1.3 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
run:
timeout: 5m
modules-download-mode: readonly
output:
sort-results: true
linters-settings:
depguard:
rules:
main:
deny:
- pkg: github.com/satori/go.uuid
desc: Use github.com/google/uuid or github.com/gofrs/uuid instead
errcheck:
check-type-assertions: true
check-blank: true
gofumpt:
extra-rules: true
govet:
enable-all: true
disable:
- composites
settings:
printf:
funcs:
- Errorf
- Warnf
- Infof
- Debugf
- Fatalf
- StartRootSpanf
- StartSubSpanf
- EndWithMsgf
- Newf
- NewWithCausef
misspell:
locale: US
staticcheck:
go: "1.22"
checks: [ "all", "-SA3000" ]
unused:
check-exported: false
linters:
disable-all: true
enable:
- depguard
- errcheck
- errorlint
- exportloopref
- goconst
- gofumpt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- noctx
- prealloc
- predeclared
- revive
- staticcheck
- typecheck
- unconvert
- unused
issues:
max-same-issues: 10
exclude-use-default: false
exclude:
- "fieldalignment: struct with \\d+ pointer bytes could be"
- "package-comments: should have a package comment"