ruby/Use-an-opinionated-set-of-rules-for-Rubocop.md
Ruby code can be written in many different styles and still be syntactically correct. The presence of divergent style and format can disrupt communication as well as complicate feature development. Code that exhibits a consistent style is easier to understand and maintain. The absence of consistent enforced style can result in unnecessary code churn.
Therefore: Use an opinionated set of rules for Rubocop when coding in Ruby.
There are, however, a few reasons one might choose not to introduce Standard in a project:
Overall, the goal is to increase the quality and consistency of code while not getting distracted by disproportionally minor or trivial details. It's more important for an implementation team to agree to follow shared conventions than it is to enforce a specific configuration.