⚙️ [Maintenance]: Add afterall to codespell ignore words list#287
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. |
1 similar comment
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", which is used throughout the repository in test lifecycle scripts (AfterAll.ps1) and workflow files. The repository uses super-linter for CI/CD linting, which includes codespell for spell checking.
Changes:
- Created
.github/linters/.codespellrcconfiguration file with codespell settings - Added "afterall" to the ignore-words-list to prevent false positives
- Configured skip pattern to exclude the linters directory itself from spell checking
….0' into maintenance/codespellrc-ignore-afterall
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. |
1 similar comment
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. |
92e40e2
into
dependabot/github_actions/super-linter/super-linter-8.5.0
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.