No commit activity in last 3 years
No release in over 3 years
Extends puppet-lint with additional checks.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

puppet-lint-extended

Provides additional checks for puppet-lint that are not part of the puppet style guide but still make for good code.

List of the checks:

leading_comment_space

 # bad
 #comment

 # good
 # comment

 # allows
 ########

space_after_comma

 # bad
 [foo,bar]

 # good
 [foo, bar]

 # allows
 [foo, bar,]
 foo,;

space_around_operator

 # bad
 $foo='bar'
 if $baz<1

 # good
 $foo = 'bar'
 if $baz < 1

space_inside_braces

 # bad
 {foo:'bar'}

 # good
 { foo:'bar' }

 # allows
 {}