Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[codespell]
skip = ./.github/linters
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

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

The skip path pattern ./.github/linters may not work as expected with codespell. According to codespell documentation, the skip option expects glob patterns or comma-separated paths without the leading ./.

Consider changing this to one of the following:

  • skip = .github/linters (without the leading ./)
  • skip = .github/linters/* (to be more explicit about skipping files within the directory)
  • skip = *.rc,*.yml,*.psd1 (if you want to skip specific file types in that directory)

The current pattern with ./ prefix may cause codespell to not properly skip files in the linters directory.

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

Copilot uses AI. Check for mistakes.
2 changes: 1 addition & 1 deletion .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fetch-depth: 0

- name: Lint code base
uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
uses: super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0
env:
GITHUB_TOKEN: ${{ github.token }}
VALIDATE_BIOME_FORMAT: false
Expand Down
Loading