File tree Expand file tree Collapse file tree 4 files changed +31
-3
lines changed Expand file tree Collapse file tree 4 files changed +31
-3
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-top_scope_facts-check
5
+ --no-legacy_facts-check
6
+ --no-relative_classname_reference-check
7
+ --no-relative_classname_inclusion-check
8
+ --no-anchor_resource-check
9
+ --no-version_comparison-check
10
+ --no-manifest_whitespace_closing_bracket_after-check
Original file line number Diff line number Diff line change @@ -35,3 +35,15 @@ Rakefile:
35
35
.travis.yml :
36
36
delete : true
37
37
changelog_since_tag : " 3.2.0"
38
+ Rakefile :
39
+ extra_disabled_lint_checks :
40
+ - parameter_types
41
+ - parameter_documentation
42
+ - top_scope_facts
43
+ - legacy_facts
44
+ - relative_classname_reference
45
+ - relative_classname_inclusion
46
+ - anchor_resource
47
+ - version_comparison
48
+ - manifest_whitespace_closing_bracket_after
49
+
Original file line number Diff line number Diff line change @@ -42,6 +42,15 @@ def changelog_future_release
42
42
end
43
43
44
44
PuppetLint . configuration . send ( 'disable_relative' )
45
+ PuppetLint . configuration . send ( 'disable_parameter_types' )
46
+ PuppetLint . configuration . send ( 'disable_parameter_documentation' )
47
+ PuppetLint . configuration . send ( 'disable_top_scope_facts' )
48
+ PuppetLint . configuration . send ( 'disable_legacy_facts' )
49
+ PuppetLint . configuration . send ( 'disable_relative_classname_reference' )
50
+ PuppetLint . configuration . send ( 'disable_relative_classname_inclusion' )
51
+ PuppetLint . configuration . send ( 'disable_anchor_resource' )
52
+ PuppetLint . configuration . send ( 'disable_version_comparison' )
53
+ PuppetLint . configuration . send ( 'disable_manifest_whitespace_closing_bracket_after' )
45
54
46
55
47
56
if Bundler . rubygems . find_name ( 'github_changelog_generator' ) . any?
@@ -50,7 +59,6 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
50
59
config . user = "#{ changelog_user } "
51
60
config . project = "#{ changelog_project } "
52
61
config . since_tag = "3.2.0"
53
- config . max_issues = 500
54
62
config . future_release = "#{ changelog_future_release } "
55
63
config . exclude_labels = [ 'maintenance' ]
56
64
config . header = "# Change log\n \n All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)."
89
97
end
90
98
end
91
99
92
- FastGettext . default_text_domain = 'default-text-domain'
Original file line number Diff line number Diff line change 89
89
}
90
90
],
91
91
"description" : " Module for Apache configuration" ,
92
- "pdk-version" : " 2.3 .0" ,
92
+ "pdk-version" : " 2.4 .0" ,
93
93
"template-url" : " https://github.com/puppetlabs/pdk-templates.git#main" ,
94
94
"template-ref" : " heads/main-0-g806810b"
95
95
}
You can’t perform that action at this time.
0 commit comments