⚙️ [Maintenance]: Add afterall to codespell ignore words list#161
Conversation
No Significant Changes DetectedThis PR does not contain changes to files that would trigger a new release:
Build, test, and publish stages will be skipped for this PR. If you believe this is incorrect, please verify that your changes are in the correct locations. |
No Significant Changes DetectedThis PR does not contain changes to files that would trigger a new release:
Build, test, and publish stages will be skipped for this PR. If you believe this is incorrect, please verify that your changes are in the correct locations. |
There was a problem hiding this comment.
Pull request overview
This PR adds a codespell configuration file to prevent false positive spell check warnings for the word "afterall" (commonly used in PowerShell's Pester testing framework as AfterAll). The configuration is placed in .github/linters/.codespellrc following the repository's convention of storing linter configurations in this directory.
Changes:
- Creates new
.codespellrcconfiguration file with ignore-words-list for "afterall" - Configures codespell to skip the
.github/lintersdirectory during spell checking
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
84916e9
into
main
Adds
afterallto the codespell ignore words list in.codespellrcto prevent false positive spell check warnings in CI linting. This term is commonly used in PowerShell (e.g., Pester'sAfterAllblock) and should not be flagged as a misspelling.Codespell configuration
The
.codespellrclinter configuration now includesignore-words-list = afterall, which tells codespell to skip this word during spell checking. No changes to functionality or shipped artifacts.