forked from richardwilkes/gcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
98 lines (98 loc) · 2.24 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
run:
timeout: 5m
modules-download-mode: readonly
output:
sort-results: true
linters-settings:
depguard:
list-type: blacklist
include-go-root: true
packages:
- log
- github.com/satori/go.uuid
errcheck:
check-type-assertions: true
check-blank: true
exclude-functions:
- (*bufio.Writer).WriteByte
- (*bufio.Writer).WriteRune
- (*bufio.Writer).WriteString
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).Insert
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).InsertByte
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).InsertRune
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).InsertString
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).Write
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).WriteByte
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).WriteRune
- (*github.com/richardwilkes/toolbox/xio.ByteBuffer).WriteString
gocritic:
enabled-tags:
- diagnostic
- performance
- style
- opinionated
- experimental
disabled-checks:
- sloppyReassign
gofumpt:
extra-rules: true
govet:
check-shadowing: true
enable-all: true
settings:
printf:
funcs:
- Errorf
- Warnf
- Infof
- Debugf
- Fatalf
- StartRootSpanf
- StartSubSpanf
- EndWithMsgf
- Newf
- NewWithCausef
misspell:
locale: US
staticcheck:
go: "1.19"
checks: [ "all", "-SA3000" ]
unused:
check-exported: false
linters:
disable-all: true
enable:
- depguard
- errcheck
- errorlint
- exportloopref
- goconst
- gofumpt
- goimports
- gosec
- gosimple
- govet
- ineffassign
- misspell
- noctx
- prealloc
- predeclared
- revive
- staticcheck
- typecheck
- unconvert
- unused
issues:
exclude-use-default: false
exclude:
- "fieldalignment: struct with \\d+ pointer bytes could be"
- "package-comments: should have a package comment"
- "stdmethods: method MarshalJSON"
- "stdmethods: method UnmarshalJSON"
- "G104:"
- "G110:"
- "G204:"
- "G301:"
- "G304:"
- "G306:"
- "SA5008:"