Skip to content

Commit a5f0faa

Browse files
authored
Exclude *.xlf files from codespell (#4)
codespell finds false-positive issues in non-english translation files
1 parent 02b3cb0 commit a5f0faa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/fabbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: |
6868
# Run codespell
6969
rm -rf b && cp -a a b && cd b
70-
codespell -L invokable --check-filenames -w --skip=composer.lock,pnpm-lock.yaml || true
70+
codespell -L invokable --check-filenames -w --skip='composer.lock,pnpm-lock.yaml,*.xlf' || true
7171
cd ..
7272
7373
if ! diff -qr --no-dereference a/ b/ >/dev/null; then

0 commit comments

Comments
 (0)