Blocks of lines in your manifest can be ignored by boxing them in with
lint:ignore:<check name>
and lint:endignore
comments
You can also ignore just a single line by adding a trailing lint:ignore:<check
name>
comment to the line
Multiple checks can be ignored in one comment by listing them with whitespace separators
Telling puppet-lint to ignore certain problems won’t prevent them from being
detected, they just won’t be displayed (or fixed) by default. If you want to
see which problems puppet-lint is ignoring, you can add --show-ignored
to your
puppet-lint invocation.
For the sake of your memory (and your coworkers), any text in your comment
after lint:ignore:<check name>
will be considered the reason for ignoring the
check and will be displayed when showing ignored problems.