Remove (or disable) Style/BracesAroundHashParameters · Issue #7641 · rubocop/rubocop

Since Ruby 2.7, the existence of curly braces on the last argument has meaning. It means, the following codes have different meanings. foo(x: 1) # x: 1 is a keyword argument foo({x: 1}) # {x: 1} is...