File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
1
--relative
2
+ --no-parameter_types-check
3
+ --no-parameter_documentation-check
4
+ --no-documentation-check
2
5
--no-140chars-check
Original file line number Diff line number Diff line change 13
13
- /provision.yaml
14
14
Rakefile :
15
15
default_disabled_lint_checks :
16
- - ' 140chars'
16
+ - parameter_types
17
+ - parameter_documentation
18
+ - documentation
19
+ - 140chars
17
20
spec/spec_helper.rb :
18
21
coverage_report : true
19
22
minimum_code_coverage_percentage : 100
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ def changelog_future_release
41
41
end
42
42
43
43
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' )
44
47
PuppetLint . configuration . send ( 'disable_140chars' )
45
48
46
49
You can’t perform that action at this time.
0 commit comments