Skip to content

Commit

Permalink
(CONT-807) Correct Style/WordArray
Browse files Browse the repository at this point in the history
  • Loading branch information
chelnak committed Apr 19, 2023
1 parent 87e38e8 commit d1062a0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/puppetlabs_spec_helper/rake_tasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@
PuppetLint.configuration.ignore_paths << 'tests/**/*.pp'
PuppetLint.configuration.ignore_paths << 'types/**/*.pp'
PuppetLint.configuration.ignore_paths << 'vendor/**/*.pp'
puppet_lint_disable_checks = [
'80chars',
'140chars',
'class_inherits_from_params_class',
'class_parameter_defaults',
'disable_autoloader_layout',
'documentation',
'single_quote_string_with_variables'
puppet_lint_disable_checks = %w[
80chars
140chars
class_inherits_from_params_class
class_parameter_defaults
disable_autoloader_layout
documentation
single_quote_string_with_variables
]

puppet_lint_disable_checks.each do |check|
Expand Down Expand Up @@ -383,7 +383,7 @@ def changelog_future_release
},
'Added' => {
'prefix' => '### Added',
'labels' => ['feature', 'enhancement']
'labels' => %w[feature enhancement]
},
'Fixed' => {
'prefix' => '### Fixed',
Expand Down

0 comments on commit d1062a0

Please sign in to comment.