Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codespell]
skip = ./.github/linters
Copy link

Copilot AI Apr 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

codespell path matching can vary between emitting paths like .github/linters/... vs ./.github/linters/.... To make the skip rule more robust, consider dropping the leading ./ (or include both patterns) so the directory is reliably skipped regardless of how paths are reported.

Suggested change
skip = ./.github/linters
skip = .github/linters

Copilot uses AI. Check for mistakes.
ignore-words-list = afterall
Loading