diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-08-05 11:47:22 -0700 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-08-05 11:47:22 -0700 |
commit | 78edb89df3c6f2c83388290332bbe407ae719b6b (patch) | |
tree | 27b05cf64aa93383e7a50ee385e1eb5661152d75 /tasks | |
parent | cfbcf978ba4cb6247ec41518023c2cd0e972aed8 (diff) | |
download | chef-78edb89df3c6f2c83388290332bbe407ae719b6b.tar.gz |
Fix chefstyle violations.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/spellcheck.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/spellcheck.rb b/tasks/spellcheck.rb index a5c775eb83..54e92483e2 100644 --- a/tasks/spellcheck.rb +++ b/tasks/spellcheck.rb @@ -46,8 +46,8 @@ namespace :spellcheck do end task :cspell_check do - require 'chef-utils' - ChefUtils.which('cspell') || abort(<<~INSTALL_CSPELL) + require "chef-utils" + ChefUtils.which("cspell") || abort(<<~INSTALL_CSPELL) cspell is needed to run the spellcheck tasks. Run `npm install -g cspell` to install. For more information: https://www.npmjs.com/package/cspell INSTALL_CSPELL |