Remove class_parameter_defaults puppet-lint check

Change-Id: I9e529d38a55e57b2f3a370036a819203eee89b72
Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
This commit is contained in:
Gael Chamoulaud 2015-11-12 12:32:51 +01:00
parent 5d603ecfc4
commit 9489bb7f2d
1 changed files with 1 additions and 1 deletions

View File

@ -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"