Skip to content

Commit a1c595e

Browse files
committed
(GH-cat-9) syntax:hiera:yaml exclusions added
1 parent 17dd71a commit a1c595e

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

.puppet-lint.rc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
--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

.sync.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,15 @@ Rakefile:
3535
.travis.yml:
3636
delete: true
3737
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+

Rakefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ def changelog_future_release
4242
end
4343

4444
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')
4554

4655

4756
if Bundler.rubygems.find_name('github_changelog_generator').any?
@@ -50,7 +59,6 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
5059
config.user = "#{changelog_user}"
5160
config.project = "#{changelog_project}"
5261
config.since_tag = "3.2.0"
53-
config.max_issues = 500
5462
config.future_release = "#{changelog_future_release}"
5563
config.exclude_labels = ['maintenance']
5664
config.header = "# Change log\n\nAll 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,4 +97,3 @@ EOM
8997
end
9098
end
9199

92-
FastGettext.default_text_domain = 'default-text-domain'

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
}
9090
],
9191
"description": "Module for Apache configuration",
92-
"pdk-version": "2.3.0",
92+
"pdk-version": "2.4.0",
9393
"template-url": "https://github.com/puppetlabs/pdk-templates.git#main",
9494
"template-ref": "heads/main-0-g806810b"
9595
}

0 commit comments

Comments
 (0)