Skip to content

Commit 3714f6a

Browse files
⚙️ [Maintenance]: Add afterall to codespell ignore words list (#16)
Adds `afterall` to the codespell ignore words list in `.codespellrc` to prevent false positive spell check warnings in CI linting. This term is commonly used in PowerShell (e.g., Pester's `AfterAll` block) and should not be flagged as a misspelling. ## Codespell configuration The `.codespellrc` linter configuration now includes `ignore-words-list = afterall`, which tells codespell to skip this word during spell checking. No changes to functionality or shipped artifacts.
1 parent bbafdeb commit 3714f6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/linters/.codespellrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[codespell]
2+
skip = ./.github/linters
3+
ignore-words-list = afterall

0 commit comments

Comments
 (0)