puppet-zuul/Rakefile
James E. Blair a2742ec163 Disable arrow alignment puppet lint check
Changes that add or remove parameters often end up shifting all of
the parameter left because of the arrow alignment convention and
check.  This makes it look like more of the code was changed than
really was when reviewing a diff.  Instead, disable the check and
change all arrows to single-space.

Change-Id: I8b945595db479316148c85be6f6c7e12fc7b5fcd
2015-03-16 08:04:54 -07:00

10 lines
457 B
Ruby

require 'rubygems'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.fail_on_warnings = true
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_autoloader_layout')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_class_parameter_defaults')
PuppetLint.configuration.send('disable_arrow_alignment')