Skip to content

Commit 41077c0

Browse files
committed
feat(linter): add codespell linter
Add the codespell linter which uses a dictionary of common misspellings and ignores unknown words. Signed-off-by: Roger Luethi <[email protected]>
1 parent 6c00575 commit 41077c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+488
-17
lines changed

.automation/generated/linter-helps.json

Lines changed: 120 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.automation/generated/linter-links-previews.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@
8484
"image": "https://opengraph.githubassets.com/bf0d187aea6f03a804178458080b2be18a5fd1bf8d8cc353ff3150743aae9805/greglook/cljstyle",
8585
"title": "GitHub - greglook/cljstyle: A tool for formatting Clojure code"
8686
},
87+
"codespell": {
88+
"description": "codespell checks code and documentation for common misspellings.",
89+
"image": null,
90+
"title": "codespell-project/codespell: check code for common misspellings"
91+
},
8792
"coffeelint": {
8893
"description": "\n CoffeeLint is a style checker that helps keep\n CoffeeScript\n code clean and consistent. CoffeeScript does a great job at\n insulating programmers from many of\n JavaScript's bad parts, but it won't help enforce a consistent style\n across a code base. CoffeeLint can help with that.\n ",
8994
"image": null,
@@ -624,4 +629,4 @@
624629
"image": "https://avatars3.githubusercontent.com/u/5244945?s=400&v=4",
625630
"title": "adrienverge/yamllint"
626631
}
627-
}
632+
}

.automation/generated/linter-versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"clippy": "0.1.81",
1616
"clj-kondo": "2024.09.27",
1717
"cljstyle": "0.15.0",
18+
"codespell": "2.3.0",
1819
"coffeelint": "5.2.11",
1920
"cpplint": "2.0.0",
2021
"csharpier": "0.29.2",
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
abandonded Dockefile
2+
abberivated acadamy
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
abandonded Dockefile
2+
abberivated acadamy
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
abandoned Dockerfile
2+
abbreviated academy

.cspell.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
"citeyear",
7070
"ckKXNNNXkc",
7171
"cloneable-readable",
72+
"codespell",
73+
"codespellrc",
7274
"crcr",
7375
"cyclonedx",
7476
"dKNNXXO",

.github/workflows/deploy-BETA-linters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ jobs:
158158
"spell_proselint",
159159
"spell_vale",
160160
"spell_lychee",
161+
"spell_codespell",
161162
"sql_sqlfluff",
162163
"swift_swiftlint",
163164
"tekton_tekton_lint",

.github/workflows/deploy-DEV-linters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ jobs:
139139
"spell_proselint",
140140
"spell_vale",
141141
"spell_lychee",
142+
"spell_codespell",
142143
"sql_sqlfluff",
143144
"swift_swiftlint",
144145
"tekton_tekton_lint",

.github/workflows/deploy-RELEASE-linters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ jobs:
152152
"spell_proselint",
153153
"spell_vale",
154154
"spell_lychee",
155+
"spell_codespell",
155156
"sql_sqlfluff",
156157
"swift_swiftlint",
157158
"tekton_tekton_lint",

0 commit comments

Comments
 (0)