class RuboCop::Cop::InternalAffairs::RedundantContextConfigParameter

Checks for redundant ‘:config` parameter in the `context` arguments.

@example

# bad
context 'foo', :config do
end

# good
context 'foo' do
end