A puppet-lint plugin to check that classes are included by their absolute name.
Including a class by a relative name might lead to unexpected results.
include foobarinclude ::foobarTo disable this check, you can add --no-absolute_classname-check to your puppet-lint command line.
$ puppet-lint --no-absolute_classname-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_absolute_classname')