From cec889a07376e71a366459b5785d5520f59e14f9 Mon Sep 17 00:00:00 2001 From: Patrick Brinich-Langlois Date: Tue, 12 Jan 2021 17:34:43 +0000 Subject: [PATCH] Rubocop: Disable Style/MethodMissingSuper 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-hq/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. --- rubocop.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/rubocop.yml b/rubocop.yml index 51c6244..57330ba 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -782,9 +782,6 @@ Style/MethodCallWithoutArgsParentheses: Style/MethodDefParentheses: Enabled: true -Style/MethodMissingSuper: - Enabled: true - Style/MinMax: Enabled: true