class RuboCop::Cop::Chef::Style::IncludeRecipeWithParentheses

There is no need to wrap the recipe in parentheses when using the include_recipe helper.

@example

### incorrect
include_recipe('foo::bar')

### correct
include_recipe 'foo::bar'