
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
10 lines
457 B
Ruby
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')
|