Skip to content

Commit f2a9da7

Browse files
committed
Enable Hiera syntax check
The Hiera key check exists since a long time and I think it makes sense to enable it by default. This is a potential breaking change, so we should probably wait with merging until the next major release. In addition we also enable the checks for Hiera values.
1 parent c29b2db commit f2a9da7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/puppet-syntax.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ module PuppetSyntax
1919
'**/templates/**/*.epp',
2020
]
2121
@fail_on_deprecation_notices = true
22-
@check_hiera_keys = false
23-
@check_hiera_data = false
22+
@check_hiera_keys = true
23+
@check_hiera_data = true
2424

2525
class << self
2626
attr_accessor :exclude_paths,

0 commit comments

Comments
 (0)