diff --git a/rubocop.yml b/rubocop.yml index e55f325c..86984783 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -852,6 +852,11 @@ Style/StringLiteralsInInterpolation: Style/StructInheritance: Enabled: false +<% if rubocop_version >= "1.64" %> +Style/SuperArguments: + Enabled: true +<% end %> + <% if rubocop_version >= "1.58" %> Style/SuperWithArgsParentheses: Enabled: true diff --git a/test/fixtures/full_config.yml b/test/fixtures/full_config.yml index d5c1cda7..50932e0a 100644 --- a/test/fixtures/full_config.yml +++ b/test/fixtures/full_config.yml @@ -4148,7 +4148,7 @@ Style/StructInheritance: Style/SuperArguments: Description: Call `super` without arguments and parentheses when the signature is identical. - Enabled: pending + Enabled: true VersionAdded: '1.64' Style/SuperWithArgsParentheses: Description: Use parentheses for `super` with arguments.