We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afb41e2 commit 5ae1ce1Copy full SHA for 5ae1ce1
.gitignore
@@ -1,3 +1,6 @@
1
pkg/
2
spec/fixtures/
3
Gemfile.lock
4
+*.orig
5
+*.rej
6
+*.patch
Gemfile
@@ -9,5 +9,6 @@ end
9
gem 'rake'
10
gem 'puppetlabs_spec_helper'
11
gem 'puppet-lint'
12
+gem 'puppet-syntax'
13
14
# vim:ft=ruby
Rakefile
@@ -1,7 +1,13 @@
require 'puppetlabs_spec_helper/rake_tasks'
+require 'puppet-syntax/tasks/puppet-syntax'
require 'puppet-lint/tasks/puppet-lint'
+PuppetSyntax.exclude_paths = ["spec/fixtures/**/*"]
PuppetLint.configuration.send("disable_class_inherits_from_params_class")
7
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", 'tests/**/*.pp']
8
-task :default => [:spec, :lint]
+task :default => [
+ :syntax,
+ :lint,
+ :spec,
+]
0 commit comments