summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-06-18 17:09:38 -0700
committerTim Smith <tsmith84@gmail.com>2020-06-23 14:48:25 -0700
commit15d6bc12880f0bd45ddcdc97991954e24a06260e (patch)
treecd98305a0f0d47351e47893c90f62b440f03b6c0 /Rakefile
parent66b1f1f4e66ab9dc85381966b7cddf6381541d2a (diff)
downloadchef-15d6bc12880f0bd45ddcdc97991954e24a06260e.tar.gz
Setup cspell to pull from our common dictionary
This makes it easier for us to use this on other projects. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 2949b31cb7..b1eb89c6b9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -111,6 +111,7 @@ end
namespace :spellcheck do
task :run do
+ sh 'wget https://raw.githubusercontent.com/chef/chef_dictionary/master/chef.txt -O chef_dictionary.txt'
sh 'cspell "**/*"'
end