class RuboCop::Cop::Chef::Modernize::PropertyWithNameAttribute

When using properties in a custom resource you should use name_property not the legacy name_attribute from the days of attributes

@example

### incorrect
property :bob, String, name_attribute: true

### correct
property :bob, String, name_property: true