File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
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
5
+ --no-140chars-check
Original file line number Diff line number Diff line change @@ -8,6 +8,13 @@ Gemfile:
8
8
' :system_tests ' :
9
9
- gem : ' nokogiri'
10
10
platforms : ruby
11
+ Rakefile :
12
+ default_disabled_lint_checks :
13
+ - relative
14
+ - parameter_types
15
+ - parameter_documentation
16
+ - documentation
17
+ - 140chars
11
18
spec/spec_helper.rb :
12
19
mock_with : " :rspec"
13
20
coverage_report : true
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ 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' )
47
+ PuppetLint . configuration . send ( 'disable_140chars' )
44
48
45
49
46
50
if Gem . loaded_specs . key? 'github_changelog_generator'
You can’t perform that action at this time.
0 commit comments