Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/actions/spelling/block-delimiters.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# generic ignore spelling block
<!--begin no spell check-->
<!--end no spell check-->

# ignore code blocks
```
```
10 changes: 9 additions & 1 deletion .github/workflows/spelling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ jobs:
- uses: actions/checkout@v3
- name: Check spelling
id: spelling
uses: check-spelling/check-spelling@v0.0.24
# The given commit contains preliminary, unreleased, support for ignoring
# whole blocks (multi-line) from spell checking. See
# https://github.com/check-spelling/check-spelling/commit/46c981b7c96b3777aff4fd711fc9a8f126121b04
# for more details.
# The given commit contains preliminary, unreleased, support for ignoring
# whole blocks (multi-line) from spell checking. See
# https://github.com/check-spelling/check-spelling/commit/46c981b7c96b3777aff4fd711fc9a8f126121b04
# for more details.
uses: check-spelling/check-spelling@46c981b7c96b3777aff4fd711fc9a8f126121b04
with:
check_file_names: 1
post_comment: 0
Expand Down
Loading