view modules/concat/Rakefile @ 264:ea72ea1f7320

Update Hiera to fix warnings Also removed "use virtual packages" setting because I don't remember why we have it (other than it being an old default that changed) and it could be useful if it does what I think it does!
author IBBoard <dev@ibboard.co.uk>
date Sun, 29 Dec 2019 16:47:31 +0000
parents 37675581a273
children d9352a684e62
line wrap: on
line source

require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'

PuppetLint.configuration.fail_on_warnings
PuppetLint.configuration.send('relative')
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_documentation')
PuppetLint.configuration.send('disable_single_quote_string_with_variables')
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]