forked from google/go-github
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.golangci.yml
More file actions
174 lines (167 loc) · 4.91 KB
/
.golangci.yml
File metadata and controls
174 lines (167 loc) · 4.91 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
version: "2"
run:
build-tags:
- integration
linters:
enable:
- canonicalheader
- copyloopvar
- dogsled
- dupl
- errorlint
- forbidigo
- gocritic
- godot
- goheader
- gosec
- misspell
- nakedret
- paralleltest
- perfsprint
- revive
- sliceofpointers
- staticcheck
- tparallel
- unconvert
- unparam
- whitespace
settings:
errorlint:
errorf: false
asserts: true
comparison: true
forbidigo:
forbid:
- pattern: ^reflect\.DeepEqual$
msg: "Use cmp.Equal instead of reflect.DeepEqual"
- pattern: "^http\\.Method[A-Z][a-z]*$"
msg: "Use string literals instead of http.Method constants (https://pkg.go.dev/net/http#pkg-constants)"
gocritic:
disable-all: true
enabled-checks:
- commentedOutCode
- commentFormatting
- deprecatedComment
- paramTypeCombine
goheader:
values:
regexp:
CopyrightDate: 'Copyright \d{4} '
template: |-
{{CopyrightDate}}The go-github AUTHORS. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
gosec:
excludes:
# duplicates errcheck
- G104
# int(os.Stdin.Fd())
- G115
misspell:
locale: US
# extra words from https://go.dev//wiki/Spelling
extra-words:
- typo: marshall
correction: marshal
- typo: marshalled
correction: marshaled
- typo: marshalling
correction: marshaling
- typo: unmarshall
correction: unmarshal
- typo: unmarshalling
correction: unmarshaling
- typo: unmarshalled
correction: unmarshaled
- typo: unmarshalling
correction: unmarshaling
ignore-rules:
- analyses # returned by the GitHub API
- cancelled # returned by the GitHub API
perfsprint:
errorf: true
strconcat: false
revive:
# Set below 0.8 to enable error-strings rule.
confidence: 0.6
rules:
- name: blank-imports
- name: bool-literal-in-expr
- name: context-as-argument
- name: context-keys-type
- name: dot-imports
- name: early-return
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: exported
arguments:
- disableChecksOnConstants
- disableChecksOnVariables
- disableStutteringCheck
- name: filename-format
arguments:
- ^[_a-z][_a-z0-9]*.go$
- name: increment-decrement
- name: indent-error-flow
- name: package-comments
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
- name: time-equal
- name: time-naming
- name: unexported-naming
- name: unexported-return
- name: unnecessary-format
- name: unreachable-code
- name: unused-parameter
- name: use-any
- name: var-declaration
- name: var-naming
staticcheck:
checks:
- "all"
- "-QF1008" # allow embedded field in selector
custom:
sliceofpointers:
type: module
description: Reports usage of []*string and slices of structs without pointers.
original-url: github.com/google/go-github/v68/tools/sliceofpointers
exclusions:
rules:
- linters:
- dogsled
- dupl
- gosec
- unparam
path: _test\.go
# We need to pass nil Context in order to test DoBare erroring on nil ctx.
- linters: [staticcheck]
path: _test\.go
text: 'SA1012: do not pass a nil Context'
# We need to use sha1 for validating signatures
- linters: [gosec]
text: 'G505: Blocklisted import crypto/sha1: weak cryptographic primitive'
# This is adapted from golangci-lint's default exclusions. It disables linting for error checks on
# os.RemoveAll, fmt.Fprint*, fmt.Scanf, and any function ending in "Close".
- linters: [errcheck]
text: Error return value of .(.*Close|fmt\.Fprint.*|fmt\.Scanf|os\.Remove(All)?). is not checked
# We don't care about file inclusion via variable in examples or internal tools.
- linters: [gosec]
path: ^(example|tools)\/
text: 'G304: Potential file inclusion via variable'
# We don't run parallel integration tests
- linters: [paralleltest, tparallel]
path: ^test/integration
# Because fmt.Sprint(reset.Unix())) is more readable than strconv.FormatInt(reset.Unix(), 10).
- linters: [perfsprint]
text: fmt.Sprint.* can be replaced with faster strconv.FormatInt
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports