From a11c81c07397fea6892fa00638556f50de3389ab Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathieu=20Gagne=CC=81?= Date: Mon, 12 Aug 2013 16:46:08 -0400 Subject: [PATCH] Disable 80chars/class_parameter_defaults checks * Disable warnings for "line has more than 80 characters" * Disable warnings for "parameterised class parameter without a default value" We do not wish to track warnings for such violations. Change-Id: I4a00f219682a83f051c92b5e885e778b9422fdbf (cherry picked from commit 9b901a5db9015129f98f189a4ddf5620f777ec7f) --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index cd3d379..3adf833 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,5 @@ require 'puppetlabs_spec_helper/rake_tasks' +require 'puppet-lint/tasks/puppet-lint' + +PuppetLint.configuration.send('disable_80chars') +PuppetLint.configuration.send('disable_class_parameter_defaults') -- 2.45.2