mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
18 lines
662 B
Bash
Executable File
18 lines
662 B
Bash
Executable File
#!/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`.
|
|
|
|
# cspell does its own expansion of shell wildcards.
|
|
cd $(dirname $0)
|
|
cspell '**/*.hh' 'include/qpdf/*.h' '**/*.cc' \
|
|
'manual/*.rst' 'manual/*.in' 'manual/_ext/*.py' \
|
|
'**/CMakeLists.txt' ChangeLog 'README*' TODO
|