summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
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"