From a28196d93f657b3cda0db60056b3fde094529ff4 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 23 Jun 2020 14:56:16 -0700 Subject: Refactor spellcheck task and stick it in its own task Signed-off-by: Tim Smith --- Rakefile | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 96ecf47920..9b8002a7db 100644 --- a/Rakefile +++ b/Rakefile @@ -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 -- cgit v1.2.1