summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index fde45aa46c..2949b31cb7 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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