From 3dd6b5fdeb804228b275b215c695faeb944a9764 Mon Sep 17 00:00:00 2001 From: Gael Chamoulaud Date: Thu, 12 Nov 2015 12:40:51 +0100 Subject: [PATCH] Remove class_parameter_defaults puppet-lint check Change-Id: I3dc466436495ee2355f13215122be5d30f781122 Signed-off-by: Gael Chamoulaud --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3c3603e..ed79bea 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"