summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-08-05 11:47:22 -0700
committerPete Higgins <pete@peterhiggins.org>2020-08-05 11:47:22 -0700
commit78edb89df3c6f2c83388290332bbe407ae719b6b (patch)
tree27b05cf64aa93383e7a50ee385e1eb5661152d75
parentcfbcf978ba4cb6247ec41518023c2cd0e972aed8 (diff)
downloadchef-78edb89df3c6f2c83388290332bbe407ae719b6b.tar.gz
Fix chefstyle violations.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r--tasks/spellcheck.rb4
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