From 35825d6989ca27a24015de3e55cfc7b60e0d2e5a Mon Sep 17 00:00:00 2001 From: Gael Chamoulaud Date: Thu, 12 Nov 2015 12:45:44 +0100 Subject: [PATCH] Remove class_parameter_defaults puppet-lint check Change-Id: I687539eec7466668e100d142324b9e37325b1082 Signed-off-by: Gael Chamoulaud --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3c3603e3c..ed79bead4 100644 --- a/Rakefile +++ b/Rakefile @@ -15,7 +15,7 @@ PuppetLint::RakeTask.new :lint do |config| config.ignore_paths = ["spec/**/*.pp", "vendor/**/*.pp"] config.fail_on_warnings = true config.log_format = '%{path}:%{linenumber}:%{KIND}: %{message}' - config.disable_checks = ["80chars", "class_inherits_from_params_class", "class_parameter_defaults", "only_variable_string"] + config.disable_checks = ["80chars", "class_inherits_from_params_class", "only_variable_string"] end desc "Run acceptance tests"