From ee23449b066d80793d79fe32f08658496c3a127e Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Wed, 22 Jun 2016 22:01:33 -0400 Subject: [PATCH] lint:disable 140 char line check We have some failing tests, and in the Puppet Style Guide it's a SHOULD, not a MUST that lines be under this length --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index df22893..e0fd413 100644 --- a/Rakefile +++ b/Rakefile @@ -12,6 +12,7 @@ task :default => [:clean, :spec] PuppetLint.configuration.fail_on_warnings = true PuppetLint.configuration.send('relative') +PuppetLint.configuration.send('disable_140chars') PuppetLint.configuration.send('disable_class_inherits_from_params_class') PuppetLint.configuration.send('disable_class_parameter_defaults') PuppetLint.configuration.send('disable_documentation')