-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yml
More file actions
250 lines (235 loc) · 5.34 KB
/
.golangci.yml
File metadata and controls
250 lines (235 loc) · 5.34 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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# golangci-lint configuration for Forge v2
# Production-ready linting configuration with strict settings
version: "2"
run:
timeout: 5m
tests: true
modules-download-mode: readonly
allow-parallel-runners: true
output:
formats:
text:
print-linter-name: true
print-issued-lines: true
linters:
# Default set of linters.
# The value can be:
# - `standard`: https://golangci-lint.run/docs/linters/#enabled-by-default
# - `all`: enables all linters by default.
# - `none`: disables all linters by default.
# - `fast`: enables only linters considered as "fast" (`golangci-lint help linters --json | jq '[ .[] | select(.fast==true) ] | map(.name)'`).
# Default: standard
default: none
# Enable specific linter.
enable:
- arangolint
- asciicheck
- bidichk
- bodyclose
- canonicalheader
- containedctx
# - contextcheck
- copyloopvar
# - cyclop
- decorder
# - depguard
- dogsled
# - dupl
- dupword
- durationcheck
- embeddedstructfieldcheck
- errcheck
- errchkjson
- errname
- errorlint
- exptostd
- fatcontext
- forbidigo
# - forcetypeassert
# - funcorder
# - funlen
- ginkgolinter
- gocheckcompilerdirectives
# - gochecknoglobals
- gochecknoinits
- gochecksumtype
- gocritic
- godoclint
- godot
- goheader
- gomoddirectives
- gomodguard
- goprintffuncname
- gosec
- gosmopolitan
- govet
- grouper
# - iface
- importas
- inamedparam
- ineffassign
# - interfacebloat
- intrange
- iotamixing
# - ireturn
# - lll
- loggercheck
# - maintidx
- makezero
- mirror
- misspell
# - mnd
- modernize
- musttag
- nakedret
- nilerr
- nilnesserr
- nilnil
- nlreturn
- noctx
- nolintlint
- nonamedreturns
# - nosprintfhostport
# - paralleltest
- perfsprint
- predeclared
- promlinter
- protogetter
- reassign
- recvcheck
- rowserrcheck
- sloglint
- spancheck
- sqlclosecheck
- staticcheck
- tagalign
# - tagliatelle
- testableexamples
- testifylint
- thelper
- tparallel
- unconvert
- unqueryvet
# - unused
- usestdlibvars
- usetesting
- varnamelen
- wastedassign
- whitespace
- wsl_v5
- zerologlint
# Disable specific linters.
disable:
- asasalint
- wsl
- varnamelen
- exhaustruct
- wrapcheck
- exhaustive
- testpackage
- revive
- unused
- unparam
- tagliatelle
- paralleltest
- prealloc
- noinlineerr
- nestif
- mnd
- nosprintfhostport
- lll
- ireturn
- iface
- godox
- err113
- interfacebloat
- funcorder
- forcetypeassert
- goconst
- gocognit
- gocyclo
- gochecknoglobals
- funlen
- cyclop
- maintidx
- dupl
- contextcheck
- depguard
# Defines a set of rules to ignore issues.
# It does not skip the analysis, and so does not ignore "typecheck" errors.
exclusions:
# Mode of the generated files analysis.
#
# - `strict`: sources are excluded by strictly following the Go generated file convention.
# Source files that have lines matching only the following regular expression will be excluded: `^// Code generated .* DO NOT EDIT\.$`
# This line must appear before the first non-comment, non-blank text in the file.
# https://go.dev/s/generatedcode
# - `lax`: sources are excluded if they contain lines like `autogenerated file`, `code generated`, `do not edit`, etc.
# - `disable`: disable the generated files exclusion.
#
# Default: strict
generated: lax
# Log a warning if an exclusion rule is unused.
# Default: false
warn-unused: true
# Predefined exclusion rules.
# Default: []
paths:
- examples/
- farp-rust/
presets:
- comments
- std-error-handling
- common-false-positives
- legacy
# Excluding configuration per-path, per-linter, per-text and per-source.
rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gocyclo
- errcheck
- dupl
- gosec
# Exclude gosec false positives.
- linters:
- gosec
text: "G704:"
- linters:
- gosec
text: "G117:"
# Exclude some `staticcheck` messages.
- linters:
- staticcheck
text: "SA9003:"
# Exclude `lll` issues for long lines with `go:generate`.
- linters:
- lll
source: "^//go:generate "
issues:
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0
# Show only new issues created after git revision
# new: true
# new-from-rev: HEAD
# Independently of option `exclude` use or not the default list of exclusions
# exclude-use-default: false
# Fix found issues (if it's supported by the linter)
fix: false
formatters:
settings:
goimports:
local-prefixes:
- github.com/xraph/forge
gofumpt:
extra-rules: true
severity:
default: error
rules:
- linters:
- dupl
- gocyclo
- lll
severity: warning