qpdf/spell-check

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
694 B
Plaintext
Raw Permalink Normal View History

2022-04-09 15:50:01 +00:00
#!/bin/sh
# Use comments starting with cSpell:ignore to ignore certain words for
# the entire file. For source files, you can put these anywhere. For
# markdown files, to keep them out of the way, we keep them at the
# bottom of the file in a list. See README-maintainer as an example.
# Global exceptions should be added to cSpell.json. Keep the words in
# that file sorted.
# cspell can be installed with `npm install -g cspell`.
2022-04-09 15:50:01 +00:00
# cspell does its own expansion of shell wildcards.
2022-04-09 21:30:24 +00:00
cd $(dirname $0)
2022-04-09 15:50:01 +00:00
cspell '**/*.hh' 'include/qpdf/*.h' '**/*.cc' \
'manual/*.rst' 'manual/*.in' 'manual/_ext/*.py' \
2024-02-24 15:36:29 +00:00
'**/CMakeLists.txt' 'README*.md' 'TODO*.md' \
'README*.txt' ChangeLog