Fix a false positive for Style/DoubleNegation
Fix a false positive for Style/DoubleNegation
https://github.com/rubocop/rubocop/pull/10587
Style/DoubleNegation
という cop はデフォルトでは以下のようにメソッドの戻り値に使用する場合は許可されている。
def foo?
!!return_value
end
だが、Object#define_method
やObject#define_singleton_method
を使用した場合には戻り値であっても指摘が上がってしまっていたのに対処した。