spell-check: quote wildcards

This commit is contained in:
Jay Berkenbilt 2022-04-09 11:50:01 -04:00
parent 31a81f6bab
commit 554a870b81
1 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/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
@ -9,6 +9,8 @@
# that file sorted.
# cspell can be installed with `npm install -g cspell`.
cspell **/*.hh include/qpdf/*.h **/*.cc \
manual/*.rst manual/*.in manual/_ext/*.py \
**/CMakeLists.txt ChangeLog README* TODO
# cspell does its own expansion of shell wildcards.
cspell '**/*.hh' 'include/qpdf/*.h' '**/*.cc' \
'manual/*.rst' 'manual/*.in' 'manual/_ext/*.py' \
'**/CMakeLists.txt' ChangeLog 'README*' TODO