fuel-library/deployment/puppet/nova/Rakefile
Aleksandr Didenko 47bf38d680 Refactor fuel syntax check script
- 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
2014-12-12 16:21:57 +02:00

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')