]> review.fuel-infra Code Review - puppet-modules/puppet-ceilometer.git/commitdiff
Disable 80chars/class_parameter_defaults checks
authorMathieu Gagné <mgagne@iweb.com>
Mon, 12 Aug 2013 20:46:08 +0000 (16:46 -0400)
committerMathieu Gagné <mgagne@iweb.com>
Mon, 12 Aug 2013 21:47:54 +0000 (17:47 -0400)
* 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

Rakefile

index cd3d379958947f18f5aad2ab7b3262686764d49f..3adf8337c774e86bd5b4a3f03caddd1cf82c5a52 100644 (file)
--- 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')