47bf38d680
- Check syntax for changed modules only - Use 'rake lint' instead of 'puppet-lint' where possible - Use 'bundle' for rake lint tests - Fix current syntax errors that break 'rake lint' or disable 'fail_on_warnings' option for lint Closes-bug: #1340336 Change-Id: I66c5b4799dafc32e7903c16365a277109cfb6723
8 lines
324 B
Ruby
8 lines
324 B
Ruby
require 'puppetlabs_spec_helper/rake_tasks'
|
|
require 'puppet-lint/tasks/puppet-lint'
|
|
|
|
PuppetLint.configuration.fail_on_warnings = false
|
|
PuppetLint.configuration.send('disable_80chars')
|
|
PuppetLint.configuration.send('disable_class_parameter_defaults')
|
|
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
|