summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-05-13 13:32:00 -0700
committerTim Smith <tsmith84@gmail.com>2020-05-18 20:29:41 -0700
commit552ad42b3cbc685dfef6323a964d466eda3986d0 (patch)
tree8ef45cff134f69025cc45147532e8913c56ac0c5 /Rakefile
parent9a59c6641eb2838d6a9bf7fca211a0d7459d767f (diff)
downloadchef-552ad42b3cbc685dfef6323a964d466eda3986d0.tar.gz
Add descriptions to rake tasks.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index e15eef5295..fde45aa46c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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"