puppet-lint-absolute_classname-check

Build Status Gem Version Gem Downloads Coverage Status Gemnasium Donated by Camptocamp

A puppet-lint plugin to check that classes are included by their absolute name.

Installing

From the command line

$ gem install puppet-lint-absolute_classname-check

In a Gemfile

gem 'puppet-lint-absolute_classname-check', :require => false

Checks

Relative class name inclusion

Including a class by a relative name might lead to unexpected results.

What you have done

include foobar

What you should have done

include ::foobar

Disabling the check

To 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.pp

Alternatively, 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')

Transfer Notice

This plugin was originally authored by Camptocamp. The maintainer preferred that Puppet Community take ownership of the module for future improvement and maintenance. Existing pull requests and issues were transferred over, please fork and continue to contribute here instead of Camptocamp.

Previously: https://github.com/camptocamp/puppet-lint-absolute_classname-check