Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
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.
  • Loading branch information
smortex committed Oct 9, 2023
commit 0af3a80bc7c9781bb9e43b135abd16ee3fa007f2
4 changes: 4 additions & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
--relative
--no-parameter_types-check
--no-parameter_documentation-check
--no-documentation-check
--no-140chars-check
7 changes: 7 additions & 0 deletions .sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ Gemfile:
':system_tests':
- gem: 'nokogiri'
platforms: ruby
Rakefile:
default_disabled_lint_checks:
- relative
- parameter_types
- parameter_documentation
- documentation
- 140chars
spec/spec_helper.rb:
mock_with: ":rspec"
coverage_report: true
Expand Down
4 changes: 4 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ def changelog_future_release
end

PuppetLint.configuration.send('disable_relative')
PuppetLint.configuration.send('disable_parameter_types')
PuppetLint.configuration.send('disable_parameter_documentation')
PuppetLint.configuration.send('disable_documentation')
PuppetLint.configuration.send('disable_140chars')


if Gem.loaded_specs.key? 'github_changelog_generator'
Expand Down