Skip to content

Commit

Permalink
github: fix codespell skip syntax for directories
Browse files Browse the repository at this point in the history
Summary: Codespell actually matches local files at the root of the repo with the
`./` prefix, so without it the `skip` field won't match. Fix this for `./target`
and `./.jj` directories.

Signed-off-by: Austin Seipp <[email protected]>
Change-Id: Ibeafd7e400ff3bca9187d62241296060
  • Loading branch information
thoughtpolice committed Nov 2, 2023
1 parent c783bbc commit 37d6e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
with:
check_filenames: true
check_hidden: true
skip: target,.jj,*.lock
skip: ./target,./.jj,*.lock
ignore_words_list: crate,nd,nD

0 comments on commit 37d6e71

Please sign in to comment.