puppet-askbot/Rakefile
Colleen Murphy e449a2ce34 Enable arrow alignment lint check
Discussion following https://review.openstack.org/#/c/199792/ confirmed
that we do want to enforce this check. This patch re-enables the check
and fixes lint errors that fail the check.

Change-Id: Id9e8086ba1636d158547a5fc8b2b6d24de511a12
2015-07-14 19:17:00 -07:00

9 lines
400 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')