class RuboCop::Cop::Chef::RedundantCode::UnnecessaryDesiredState

There is no need to set a property/attribute to desired_state: true as all properties/attributes have a desired_state of true by default.

@example

### incorrect
property :foo, String, desired_state: true
attribute :foo, String, desired_state: true

### correct
property :foo, String
attribute :foo, String