-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.golangci.yml
More file actions
235 lines (217 loc) · 7.67 KB
/
.golangci.yml
File metadata and controls
235 lines (217 loc) · 7.67 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
version: "2"
run:
timeout: 10m
relative-path-mode: gomod
tests: true
build-tags:
- integration
formatters:
enable:
- gofmt
- gofumpt
- goimports
- golines
settings:
goimports:
local-prefixes:
- github.com/dantte-lp/gobfd
golines:
max-len: 120
output:
formats:
text:
print-linter-name: true
colors: true
show-stats: true
issues:
max-issues-per-linter: 0
max-same-issues: 0
linters:
default: none
enable:
# ── Безопасность / Security ──
- gosec # Security problems (audit mode)
- bidichk # Dangerous Unicode sequences
- forcetypeassert # Forced type assertions → panic on bad input
- reassign # Package variable reassignment
- containedctx # context.Context stored in structs
# ── Корректность / Correctness ──
- govet # Go vet with extra analyzers
- staticcheck # Comprehensive static analysis
- errcheck # Unchecked errors
- bodyclose # HTTP response body not closed
- noctx # HTTP request without context
- contextcheck # Non-inherited context usage
- nilerr # Returns nil when error is not nil
- nilnesserr # Simultaneous nil error + invalid value
- nilnil # Simultaneous nil error + nil value
- durationcheck # Two durations multiplied together
- fatcontext # Nested contexts in loops
- copyloopvar # Loop variable copies
- predeclared # Shadows predeclared identifiers (true, len, etc.)
- recvcheck # Receiver type consistency (pointer vs value)
- gocheckcompilerdirectives # Valid //go: directives
- protogetter # Enforce proto message getters
- iface # Incorrect interface usage patterns
- asasalint # Catch []any as any in variadic func(...any)
- gochecksumtype # Exhaustive sum type checks
- gochecknoinits # No init() — explicit initialization
# ── Обработка ошибок / Error handling ──
- errorlint # Error wrapping style (Go 1.13+)
- wrapcheck # External package errors must be wrapped
- err113 # Error handling expressions
- errname # Sentinel errors prefixed with Err
- errchkjson # JSON encoding type checks
# ── Сетевые / Network ──
- nosprintfhostport # Misuse of Sprintf for host:port URLs
# ── Качество кода / Code quality ──
- gocritic # Bugs, performance, style diagnostics
- revive # Consistency and optimizations
- cyclop # Cyclomatic complexity
- gocognit # Cognitive complexity
- funlen # Long functions
- nestif # Deeply nested if statements
- exhaustive # Exhaustive enum switch
- unparam # Unused function parameters
- unconvert # Unnecessary type conversions
- unused # Unused code
- ineffassign # Ineffective assignments
- maintidx # Maintainability index
- nakedret # Naked returns
- nonamedreturns # Named return parameters
- goprintffuncname # Printf-like functions end with 'f'
- interfacebloat # Prevent interface pollution
- inamedparam # Named interface method parameters
- decorder # Consistent declaration ordering
# ── Производительность / Performance ──
- prealloc # Slice pre-allocation
- perfsprint # Faster fmt.Sprintf alternatives
- makezero # Slice with non-zero length + append
- mirror # Wrong bytes/strings mirror patterns
- wastedassign # Wasted assignment statements
- intrange # Integer range in for loops (Go 1.22+)
- exptostd # Replace x/exp with stdlib
# ── Стиль / Style ──
- goconst # Repeated strings → constant
- dupl # Code clones
- misspell # Misspelled English words
- sloglint # Consistent slog usage
- musttag # Struct tags in marshaling
- modernize # Modern Go patterns
- asciicheck # ASCII-only identifiers
- canonicalheader # Canonical net/http.Header
- dupword # Duplicate words in comments
- usestdlibvars # Use stdlib variables/constants
- loggercheck # Logger key-value pair validation
- whitespace # Unnecessary blank lines
- godot # Comments end with period
- godoclint # Godoc validation
- tagalign # Aligned struct tags
- importas # Enforce import aliases consistency
# ── Зависимости / Dependencies ──
- depguard # Forbidden package imports
- gomoddirectives # Catch stray replace/retract in go.mod
# ── Дисциплина / Discipline ──
- nolintlint # Nolint directive quality
# ── Тесты / Testing ──
- tparallel # Inappropriate t.Parallel() usage
- testpackage # Separate _test package
- thelper # Test helpers call t.Helper()
- testableexamples # Examples have expected output
- usetesting # Testing package replacements
- testifylint # Testify best practices
# ── Наблюдаемость / Observability ──
- promlinter # Prometheus metric naming
settings:
gosec:
config:
global:
audit: "true"
govet:
enable:
- shadow
- atomic
- copylocks
- loopclosure
- httpmux
cyclop:
max-complexity: 15
skip-tests: true
gocognit:
min-complexity: 15
funlen:
lines: 60
statements: 40
nestif:
min-complexity: 4
maintidx:
under: 20
nakedret:
max-func-lines: 0
exhaustive:
default-signifies-exhaustive: true
interfacebloat:
max: 10
importas:
no-unaliased: false
depguard:
rules:
main:
deny:
- pkg: "math/rand$"
desc: "Use crypto/rand or math/rand/v2"
- pkg: "^log$"
desc: "Use log/slog"
- pkg: "io/ioutil"
desc: "Deprecated in Go 1.16"
- pkg: "unsafe"
desc: "Forbidden — network daemon handles untrusted input"
- pkg: "os/exec"
desc: "Shell injection risk — not needed in this project"
nolintlint:
require-explanation: true
require-specific: true
sloglint:
attr-only: false
loggercheck:
require-string-key: true
no-printf-like: true
promlinter:
strict: true
exclusions:
generated: strict
presets:
- std-error-handling
- common-false-positives
rules:
- path: _test\.go
linters:
- gosec
- dupl
- funlen
- cyclop
- gocognit
- nestif
- err113
- wrapcheck
- nonamedreturns
- maintidx
- containedctx
- forcetypeassert
- path: cmd/
linters:
- gochecknoinits # cobra uses init() for flag registration
severity:
default: warning
rules:
- linters:
- gosec
- errcheck
- bodyclose
- noctx
- staticcheck
- forcetypeassert
- containedctx
- nilnil
- reassign
severity: error