Skip to content

Commit 0af3a80

Browse files
committed
Disable out-of-scope puppet-lint checks
For now we want to have running CI. We do not care about the module being fully documented.
1 parent 68d8c64 commit 0af3a80

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.puppet-lint.rc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
--relative
2+
--no-parameter_types-check
3+
--no-parameter_documentation-check
4+
--no-documentation-check
5+
--no-140chars-check

.sync.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ Gemfile:
88
':system_tests':
99
- gem: 'nokogiri'
1010
platforms: ruby
11+
Rakefile:
12+
default_disabled_lint_checks:
13+
- relative
14+
- parameter_types
15+
- parameter_documentation
16+
- documentation
17+
- 140chars
1118
spec/spec_helper.rb:
1219
mock_with: ":rspec"
1320
coverage_report: true

Rakefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ def changelog_future_release
4141
end
4242

4343
PuppetLint.configuration.send('disable_relative')
44+
PuppetLint.configuration.send('disable_parameter_types')
45+
PuppetLint.configuration.send('disable_parameter_documentation')
46+
PuppetLint.configuration.send('disable_documentation')
47+
PuppetLint.configuration.send('disable_140chars')
4448

4549

4650
if Gem.loaded_specs.key? 'github_changelog_generator'

0 commit comments

Comments
 (0)