Skip to content

Commit 7eab9e4

Browse files
Merge pull request #1300 from puppetlabs/pdksync_PDK_UPDATE
pdksync - (maint) - Pdk Update
2 parents 7f9bf78 + d6c5363 commit 7eab9e4

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.rubocop.yml

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ Style/BlockDelimiters:
4040
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
4141
be consistent then.
4242
EnforcedStyle: braces_for_chaining
43+
Style/BracesAroundHashParameters:
44+
Description: Braces are required by Ruby 2.7. Cop removed from RuboCop v0.80.0.
45+
See https://github.com/rubocop-hq/rubocop/pull/7643
46+
Enabled: true
4347
Style/ClassAndModuleChildren:
4448
Description: Compact style reduces the required amount of indentation.
4549
EnforcedStyle: compact

.vscode/extensions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"recommendations": [
3-
"jpogran.puppet-vscode",
3+
"puppet.puppet-vscode",
44
"rebornix.Ruby"
55
]
66
}

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@
8484
],
8585
"description": "MySQL module",
8686
"template-url": "https://github.com/puppetlabs/pdk-templates#master",
87-
"template-ref": "1.17.0-0-gd3a4319",
87+
"template-ref": "heads/master-0-g095317c",
8888
"pdk-version": "1.17.0"
8989
}

spec/spec_helper.rb

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
# set to strictest setting for testing
3939
# by default Puppet runs at warning level
4040
Puppet.settings[:strict] = :warning
41+
Puppet.settings[:strict_variables] = true
4142
end
4243
c.filter_run_excluding(bolt: true) unless ENV['GEM_BOLT']
4344
c.after(:suite) do

0 commit comments

Comments
 (0)