diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-06-23 14:56:16 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-06-23 14:56:52 -0700 |
commit | a28196d93f657b3cda0db60056b3fde094529ff4 (patch) | |
tree | 40d6895021ea969f99b4613e6ffedff768d95972 /Rakefile | |
parent | e9940a9e19950786c88d812f0e2cd3dc7f5ff684 (diff) | |
download | chef-a28196d93f657b3cda0db60056b3fde094529ff4.tar.gz |
Refactor spellcheck task and stick it in its own task
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 18 |
1 files changed, 2 insertions, 16 deletions
@@ -25,6 +25,7 @@ begin require_relative "tasks/dependencies" require_relative "tasks/announce" require_relative "tasks/docs" + require_relative "tasks/spellcheck" require_relative "lib/chef/dist" rescue LoadError => e puts "Skipping missing rake dep: #{e}" @@ -107,19 +108,4 @@ begin end rescue LoadError puts "yard is not available. bundle install first to make sure all dependencies are installed." -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 - - desc "List the unique unrecognized words in the project." - task :unknown_words do - sh 'cspell "**/*" --wordsOnly --no-summary | sort | uniq' - end -end - -desc "Run spellcheck on the project." -task spellcheck: "spellcheck:run" +end
\ No newline at end of file |