diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-05-13 13:32:00 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-18 20:29:41 -0700 |
commit | 552ad42b3cbc685dfef6323a964d466eda3986d0 (patch) | |
tree | 8ef45cff134f69025cc45147532e8913c56ac0c5 /Rakefile | |
parent | 9a59c6641eb2838d6a9bf7fca211a0d7459d767f (diff) | |
download | chef-552ad42b3cbc685dfef6323a964d466eda3986d0.tar.gz |
Add descriptions to rake tasks.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -114,9 +114,11 @@ namespace :spellcheck do sh 'cspell "**/*" "*.md"' end + desc "List the unique unrecognized words in the project." task :unknown_words do sh 'cspell "**/*" "*.md" --wordsOnly --no-summary | sort | uniq' end end +desc "Run spellcheck on the project." task spellcheck: "spellcheck:run" |