Skip to content

Commit dabf986

Browse files
committed
fix: empty arrays for dupwords and misspell
1 parent 4480ec8 commit dabf986

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

03-safe/.golangci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ linters-settings:
141141
dupword:
142142
# Keywords used to ignore detection.
143143
# Default: []
144-
ignore:
144+
ignore: []
145145
# - "blah" # this will accept "blah blah …" as a valid duplicate word
146146

147147
misspell:
@@ -152,11 +152,11 @@ linters-settings:
152152

153153
# List of words to ignore
154154
# among the one defined in https://github.com/golangci/misspell/blob/master/words.go
155-
ignore-words:
155+
ignore-words: []
156156
# - valor
157157
# - and
158158

159159
# Extra word corrections.
160-
extra-words:
160+
extra-words: []
161161
# - typo: "whattever"
162162
# correction: "whatever"

80-reckless/.golangci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ linters-settings:
210210
dupword:
211211
# Keywords used to ignore detection.
212212
# Default: []
213-
ignore:
213+
ignore: []
214214
# - "blah" # this will accept "blah blah …" as a valid duplicate word
215215

216216
misspell:
@@ -221,12 +221,12 @@ linters-settings:
221221

222222
# List of words to ignore
223223
# among the one defined in https://github.com/golangci/misspell/blob/master/words.go
224-
ignore-words:
224+
ignore-words: []
225225
# - valor
226226
# - and
227227

228228
# Extra word corrections.
229-
extra-words:
229+
extra-words: []
230230
# - typo: "whattever"
231231
# correction: "whatever"
232232

90-daredevil/.golangci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ linters-settings:
165165
dupword:
166166
# Keywords used to ignore detection.
167167
# Default: []
168-
ignore:
168+
ignore: []
169169
# - "blah" # this will accept "blah blah …" as a valid duplicate word
170170

171171
misspell:
@@ -176,12 +176,12 @@ linters-settings:
176176

177177
# List of words to ignore
178178
# among the one defined in https://github.com/golangci/misspell/blob/master/words.go
179-
ignore-words:
179+
ignore-words: []
180180
# - valor
181181
# - and
182182

183183
# Extra word corrections.
184-
extra-words:
184+
extra-words: []
185185
# - typo: "whattever"
186186
# correction: "whatever"
187187

0 commit comments

Comments
 (0)