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
This commit is contained in:
James E. Blair 2015-03-16 08:04:54 -07:00
parent 9903469495
commit a2742ec163
3 changed files with 115 additions and 114 deletions

View File

@ -6,3 +6,4 @@ 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')