Skip to content

Commit

Permalink
Rubocop: Disable Style/MethodMissingSuper
Browse files Browse the repository at this point in the history
Here are the relevant items from the changelog
(https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md):

1. In 0.89.0, "Style/MethodMissingSuper cop is removed in favor of new
Lint/MissingSuper cop."
2. rubocop/rubocop#9072 excludes
`method_missing` from the the Lint/MissingSuper cop.

The reason for (2) was that the "offenses" identified by the cop in
`method_missing` definitions were dominated by false positives.
  • Loading branch information
patbl committed Jan 12, 2021
1 parent 2de11df commit cec889a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -782,9 +782,6 @@ Style/MethodCallWithoutArgsParentheses:
Style/MethodDefParentheses:
Enabled: true

Style/MethodMissingSuper:
Enabled: true

Style/MinMax:
Enabled: true

Expand Down

0 comments on commit cec889a

Please sign in to comment.