From 8d1ea3d077ba6fba7433557f2ab092a4766b0539 Mon Sep 17 00:00:00 2001 From: Denis Egorenko Date: Sun, 17 Jan 2016 13:43:06 +0300 Subject: [PATCH] Remove class_parameter_defaults puppet-lint check Change-Id: I1bd372ca45432e5f4095f06dc0e1da2c8b15ee36 --- 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"