PropertyWithoutType

All Cookstyle Cops


The department is: Chef/Correctness

The full name of the cop is: Chef/Correctness/PropertyWithoutType


Enabled by default Supports autocorrection Target Chef Version
Enabled No All Versions

Resource properties or attributes should always define a type to help users understand the correct allowed values.

Examples

incorrect

property :size, regex: /^\d+[KMGTP]$/
attribute :size, regex: /^\d+[KMGTP]$/

correct

property :size, String, regex: /^\d+[KMGTP]$/
attribute :size, kind_of: String, regex: /^\d+[KMGTP]$/

Configurable attributes

Name Default value Configurable values
Version Added 6.18.0 String
Include
  • **/libraries/*.rb
  • **/resources/*.rb
Array

© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/workstation/cookstyle/chef_correctness_propertywithouttype/