From 552ad42b3cbc685dfef6323a964d466eda3986d0 Mon Sep 17 00:00:00 2001 From: Pete Higgins Date: Wed, 13 May 2020 13:32:00 -0700 Subject: Add descriptions to rake tasks. Signed-off-by: Pete Higgins --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Rakefile') 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" -- cgit v1.2.1