Skip to content

Commit 2539434

Browse files
smortexh0tw1r3
authored andcommitted
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 069288e commit 2539434

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.puppet-lint.rc

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

.sync.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
- /provision.yaml
1414
Rakefile:
1515
default_disabled_lint_checks:
16-
- '140chars'
16+
- parameter_types
17+
- parameter_documentation
18+
- documentation
19+
- 140chars
1720
spec/spec_helper.rb:
1821
coverage_report: true
1922
minimum_code_coverage_percentage: 100

Rakefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ 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')
4447
PuppetLint.configuration.send('disable_140chars')
4548

4649

0 commit comments

Comments
 (0)