Skip to content

Commit

Permalink
Use Lint/MissingSuper instead of Style/MethodMissingSuper
Browse files Browse the repository at this point in the history
This commit fixes the following error:

> Error: The `Style/MethodMissingSuper` cop has been removed since
> it has been superseded by `Lint/MissingSuper`. Please use
> `Lint/MissingSuper` instead.

cf. rubocop/rubocop#8376
  • Loading branch information
abicky committed Aug 9, 2020
1 parent dd67a5d commit 518a574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .rubocop.yml
Expand Up @@ -30,8 +30,6 @@ Style/Documentation:
Enabled: false
Style/GuardClause:
Enabled: false
Style/MethodMissingSuper:
Enabled: false
Style/MixinUsage:
Exclude:
- 'spec/**/*'
Expand All @@ -47,6 +45,8 @@ Layout/SpaceAroundMethodCallOperator:
Enabled: true
Lint/DeprecatedOpenSSLConstant:
Enabled: true
Lint/MissingSuper:
Enabled: false
Lint/MixedRegexpCaptureTypes:
Enabled: true
Lint/RaiseException:
Expand Down

0 comments on commit 518a574

Please sign in to comment.