-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy path.golangci.yml
More file actions
138 lines (138 loc) · 2.92 KB
/
.golangci.yml
File metadata and controls
138 lines (138 loc) · 2.92 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
version: "2"
linters:
enable:
- dogsled
- goconst
- gocritic
- gosec
- lll
- misspell
- nakedret
- revive
- unconvert
- unparam
- whitespace
settings:
dupl:
threshold: 120
goconst:
min-len: 2
min-occurrences: 3
gocritic:
disabled-checks:
- emptyStringTest
- hugeParam
- rangeValCopy
- exitAfterDefer
- octalLiteral
- httpNoBody
- unnecessaryBlock
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
gocyclo:
min-complexity: 15
gosec:
excludes:
- G115
config:
G306: "0644"
lll:
line-length: 140
misspell:
locale: US
exclusions:
generated: lax
rules:
- linters:
- lll
source: //go:generate
- linters:
- lll
source: // See https://
- linters:
- dupl
- errcheck
- funlen
- gocognit
- goconst
- gocyclo
- gosec
- lll
- scopelint
path: _test\.go
- linters:
- unparam
path: _test\.go
text: .*\$\d?
- linters:
- govet
text: declaration of "(err|ctx|log)"
- linters:
- funlen
- gocognit
- goconst
- gocyclo
path: (cmd|tools)
- linters:
- golint
- revive
path: (conv|uri|gen|otelogen)
text: (should have comment.+or be unexported|comment on exported)
- linters:
- golint
- revive
path: (cmd|tools|internal)
text: should have (comment.+or be unexported|a package comment)
- linters:
- golint
- revive
text: (unused-parameter|if-return)
- linters:
- gocritic
text: ptrToRefParam
source: handleSchemaDepth
- path: (cmd|tools)
text: G(304|306|307)
- path: techempower
text: G114
- linters:
- gocritic
path: (http|uri)
text: sprintfQuotedString
source: form-data; name="%s"
- linters:
- gocritic
path: ogenregex[/\\]convert\.go
text: emptyFallthrough
- linters:
- goconst
text: string `(string|number|u?int\d{0,2}|float\d{2}|decimal)`
- linters:
- goconst
text: string `(Unix|unix|date|time|http-date|ipv6|String|DateTime|HTTPDate|Number)
- linters:
- goconst
text: string `(query)`
- linters: [revive]
text: avoid.+package names
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- goimports
settings:
goimports:
local-prefixes:
- github.com/ogen-go/ogen
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$