Removed disabling comments for Style/MethodMissingSuper (#15014)

* Removed disabling comments for Style/MethodMissingSuper

* Update rubocop for codeclimate
This commit is contained in:
abcang
2020-10-20 16:13:39 +09:00
committed by GitHub
parent 0c24f4dce2
commit 9649ca0fbe
2 changed files with 1 additions and 3 deletions

View File

@ -11,7 +11,6 @@ module Settings
@object = object
end
# rubocop:disable Style/MethodMissingSuper
def method_missing(method, *args)
method_name = method.to_s
# set a value for a variable
@ -24,7 +23,6 @@ module Settings
self[method_name]
end
end
# rubocop:enable Style/MethodMissingSuper
def respond_to_missing?(*)
true