summaryrefslogtreecommitdiff
path: root/Rakefile
blob: a334275d122d38cad9ff43f047fecaa00c277537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'

Rake::Task[:lint].clear
PuppetLint.configuration.fail_on_warnings
PuppetLint.configuration.send('relative')
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp", "vendor/**/*.pp"]

PuppetSyntax.exclude_paths = ["spec/fixtures/**/*.pp", "vendor/**/*"]

desc "Lint metadata.json file"
task :metadata do
  sh "metadata-json-lint metadata.json"
end