A puppet-lint plugin to check for types and class names that begin with digits.
This repository is archived, because the plugin is obsolete since Puppet 4. A Puppet compile check should give the same error. The v1.0.0 release is the last one
$ gem install puppet-lint-classes_and_types_beginning_with_digits-check
gem 'puppet-lint-classes_and_types_beginning_with_digits-check', :require => false
In the future parser/Puppet 4.0.0 and higher, defined resource types and class names cannot begin with digits.
class 10apache {}
class apache {}
To disable this check, you can add --no-classes_and_types_beginning_with_digits-check
to your puppet-lint command line.
$ puppet-lint --no-classes_and_types_beginning_with_digits-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('classes_and_types_beginning_with_digits')
This plugin was originally authored by Puppet Inc. 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 Puppet Inc.
This gem is licensed under the Apache-2 license.
To make a new release, please do:
- update the version in the gemspec file
- Install gems with
bundle install --with release --path .vendor
- generate the changelog with
bundle exec rake changelog
- Check if the new version matches the closed issues/PRs in the changelog
- Create a PR with it
- After it got merged, push a tag. GitHub actions will do the actual release to rubygems and GitHub Packages