From 518a57481912d0de2d1cdfa446bee73b081c98ed Mon Sep 17 00:00:00 2001 From: abicky Date: Mon, 10 Aug 2020 01:24:09 +0900 Subject: [PATCH] Use Lint/MissingSuper instead of Style/MethodMissingSuper 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. https://github.com/rubocop-hq/rubocop/pull/8376 --- .rubocop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index f7de1769..e6b95361 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -30,8 +30,6 @@ Style/Documentation: Enabled: false Style/GuardClause: Enabled: false -Style/MethodMissingSuper: - Enabled: false Style/MixinUsage: Exclude: - 'spec/**/*' @@ -47,6 +45,8 @@ Layout/SpaceAroundMethodCallOperator: Enabled: true Lint/DeprecatedOpenSSLConstant: Enabled: true +Lint/MissingSuper: + Enabled: false Lint/MixedRegexpCaptureTypes: Enabled: true Lint/RaiseException: