diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-06-08 17:52:26 -0700 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-06-08 17:52:26 -0700 |
commit | fb77309aecf220909bf4117219cb741c32120c07 (patch) | |
tree | 02c99477b6ae1e9ba25a51eb3ceb6830c62daf5a /Rakefile | |
parent | add160cf46ccd374e9278405cef88ca949c519b6 (diff) | |
download | chef-fb77309aecf220909bf4117219cb741c32120c07.tar.gz |
Avoid spellchecking files twice in one run.fail-early-with-cspell-syntax-error
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -111,12 +111,12 @@ end namespace :spellcheck do task :run do - sh 'cspell "**/*" "*.md"' + sh 'cspell "**/*"' end desc "List the unique unrecognized words in the project." task :unknown_words do - sh 'cspell "**/*" "*.md" --wordsOnly --no-summary | sort | uniq' + sh 'cspell "**/*" --wordsOnly --no-summary | sort | uniq' end end |