-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy path.golangci.yaml
More file actions
159 lines (156 loc) · 3.46 KB
/
.golangci.yaml
File metadata and controls
159 lines (156 loc) · 3.46 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
version: "2"
run:
modules-download-mode: readonly
issues-exit-code: 1
tests: true
allow-parallel-runners: false
output:
formats:
text:
path: stdout
print-linter-name: true
print-issued-lines: true
path-prefix: ""
linters:
default: none
enable:
- dupl
- errcheck
- gocritic
- goheader
- gosec
- govet
- nilerr
- nilnil
- noctx
- nolintlint
- nonamedreturns
- revive
- staticcheck
- tagliatelle
- unused
- whitespace
- wsl_v5
- zerologlint
settings:
errcheck:
check-type-assertions: true
check-blank: true
goheader:
values:
regexp:
YEAR: \d{4}(-\d{4})?
template: |-
Copyright (c) {{YEAR}} Canonical Ltd
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
govet:
enable-all: true
disable:
- shadow
nolintlint:
require-explanation: true
require-specific: true
revive:
rules:
- name: time-equal
severity: warning
disabled: false
- name: errorf
severity: warning
disabled: false
- name: context-as-argument
severity: warning
disabled: false
- name: error-return
severity: warning
disabled: false
- name: datarace
severity: warning
disabled: false
staticcheck:
checks:
- all
tagliatelle:
case:
rules:
json: snake
yaml: snake
wsl_v5:
allow-first-in-block: true
allow-whole-block: false
branch-max-lines: 2
exclusions:
generated: lax
rules:
- linters:
- dupl
- errcheck
- gocyclo
- gosec
path: _test\.go
- linters:
- lll
source: '^//go:generate '
- linters:
- staticcheck
path: internal/
text: 'ST1000:'
- linters:
- revive
path: internal/
text: 'package-comments:'
- linters:
- revive
path: internal/
text: 'exported:'
- linters:
- revive
path: main\.go
text: 'package-comments:'
- linters:
- govet
path: _test\.go
text: 'fieldalignment:'
paths:
- .*\.my\.go$
- lib/bad.go
- third_party$
- builtin$
- examples$
issues:
max-same-issues: 0
new: false
fix: false
severity:
default: error
rules:
- linters:
- dupl
severity: info
formatters:
enable:
- gofmt
- goimports
settings:
gofmt:
simplify: true
rewrite-rules:
- pattern: interface{}
replacement: any
exclusions:
generated: lax
paths:
- .*\.my\.go$
- lib/bad.go
- third_party$
- builtin$
- examples$