From 2044490ef637c5a6359b7db2bdb3bdf0c31fdad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Gagne=CC=81?= Date: Mon, 12 Aug 2013 16:46:28 -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: Ia6fbb8e7b422f5e73e4746d6b3990c8411d9d4dc --- 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')