No release in over a year
A new check for puppet-lint that validates that all parameters are typed.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3, < 5
 Project Readme

puppet-lint-param-types

License Test Release RubyGem Version RubyGem Downloads Coverage Status Donated by Camptocamp

This plugin validates that all class and defined type parameter are typed.

Installation

To use this plugin, add the following line to the Gemfile in your Puppet code base and run bundle install.

gem 'puppet-lint-param-types

Verify that plugin is installed correctly.

$ puppet-lint -h | grep parameter_types
    --no-parameter_types-check   Skip the parameter_types check.

Usage

parameter_types

--fix-support: No

Will raise a warning if a class parameter without data type specification is found.

WARNING: missing datatype for parameter mysql::service_ensure on line 5

What you did:

class foo (
  $bar,
  $baz,
) { ... }

What you should have done:

class foo (
  Integer $bar,
  Array[String] $baz,
) { ... }

References

https://puppet.com/docs/puppet/latest/lang_data_type.html

Transfer Notice

This plugin was originally authored by hostnet.nl. The maintainer preferred that Vox Pupuli take ownership of the gem for future improvement and maintenance. Existing pull requests and issues were transferred over, please fork and continue to contribute here instead of hostnet.

Previously: https://github.com/hostnet/puppet-lint-param-types

License

This gem is licensed under the MIT license.

Release information

To make a new release, please do:

  • update the version in the gemspec file
  • Install gems with bundle config --local path .vendor && bundle install --with release
  • 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