🪲 [Fix]: Add .codespellrc to skip linter config directory#14
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. |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
There was a problem hiding this comment.
Pull request overview
Adds a Codespell configuration so the repo’s spell-checking step stops flagging intentional “misspellings” inside linter configuration under .github/linters.
Changes:
- Add
.github/linters/.codespellrcwith askiprule for.github/linters. - Add an
ignore-words-listentry forafterall.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,3 @@ | |||
| [codespell] | |||
| skip = ./.github/linters | |||
| ignore-words-list = afterall | |||
There was a problem hiding this comment.
ignore-words-list = afterall appears unused in this repository (no occurrences found). Keeping an unused ignore entry can mask a real typo if it’s introduced later; consider removing it or documenting where/why this ignore is needed.
| ignore-words-list = afterall |
Context
The super-linter
SPELL_CODESPELLcheck flags intentional misspellings in.github/linters/.textlintrc(e.g.environemnt,pacakge). These strings exist as linter configuration patterns and are not actual typos.The GitHub, GoogleFonts, and NerdFonts repos already solved this by adding a
.codespellrcfile.Changes
.github/linters/.codespellrcthat tells codespell to skip the.github/lintersdirectory and ignore the wordafterall