rubocop / ruby-style-guide

A community-driven Ruby coding style guide
https://rubystyle.guide
16.47k stars 3.4k forks source link

Add new "Operator Method Call" rule #906

Closed koic closed 2 years ago

koic commented 2 years ago

Avoid dot where not required for operator method calls.

# bad
num.+ 42

# good
num + 42

This rule corresponds to https://github.com/rubocop/rubocop/pull/11080.

bbatsov commented 2 years ago

Thanks!