class RuboCop::Cop::Chef::RedundantCode::ResourceWithNothingAction

Chef Infra Client provides the :nothing action by default for every resource. There is no need to define a :nothing action in your resource code.

@example

### incorrect
action :nothing
  # let's do nothing
end