In order to comply with the style guide, manifests must not use hard tab characters (\t) in the whitespace (style guide).
file { '/tmp/foo':
ensure => present,
}file { '/tmp/foo':
ensure => present,
}To disable this check you can add --no-hard_tabs-check to your
puppet-lint command line.
$ puppet-lint --no-hard_tabs-check path/to/file.ppAlternatively, if you’re calling puppet-lint via the Rake task, you should
insert the following line to your Rakefile.
PuppetLint.configuration.send('disable_hard_tabs')