We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4bb50 commit 53336c1Copy full SHA for 53336c1
.golangci.reference.yml
@@ -1366,6 +1366,7 @@ linters-settings:
1366
- someword
1367
# Extra word corrections.
1368
# `typo` and `correction` should only contain letters.
1369
+ # The words are case-insensitive.
1370
# Default: []
1371
extra-words:
1372
- typo: "iff"
pkg/golinters/misspell_test.go
@@ -17,8 +17,8 @@ func Test_appendExtraWords(t *testing.T) {
17
Correction: "if",
18
},
19
{
20
- Typo: "cancelation",
21
- Correction: "cancellation",
+ Typo: "canCELation",
+ Correction: "canceLLaTION",
22
23
}
24
0 commit comments