class RuboCop::Cop::Style::SuperWithArgsParentheses

Enforces the presence of parentheses in ‘super` containing arguments.

‘super` is a keyword and is provided as a distinct cop from those designed for method call.

@example

# bad
super name, age

# good
super(name, age)