Skip to content

Commit 99a0c46

Browse files
Fix codespell, try different argument --regex (#1669)
* Try different argument --ignore-regex IGNORE_REGEX regular expression that is used to find patterns to ignore by treating as whitespace. When writing regular expressions, consider ensuring there are boundary non-word chars, e.g., "\bmatch\b". Defaults to empty/disabled. ... -r REGEX, --regex REGEX regular expression that is used to find words. By default any alphanumeric character, the underscore, the hyphen, and the apostrophe is used to build words. This option cannot be specified together with --write-changes. * Goose chase source code * Attempt to use args * Try default argparse generation Missing meta variable * Fix quotes * Try underscores
1 parent f4a8e6d commit 99a0c46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/codespell.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ jobs:
1515
- uses: codespell-project/actions-codespell@master
1616
with:
1717
ignore_words_file: .codespellignore
18-
skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map,./docs/*.ipynb
18+
skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map
19+
IGNORE_REGEX: ^\s*"image\/png":\s.*

0 commit comments

Comments
 (0)