puppet-lint
puppet-lint copied to clipboard
Puppet-lint misses when no space after opening curly brace in resource declaration
"Must use one space between the resource type and opening brace, one space between the opening brace and the title, and no spaces between the title and colon."
Both of the following pass:
package {'packagename':
package { 'packagename':
The first one should be marked as bad style.
This should be addressed by #696
Is this fixed?