Braces not found around hash in method callRB-ST1012
Braces should be around the last parameter in a method call if the last parameter is a hash.
Bad practice
some_method(x, y, a: 1, b: 2)
Recommended
some_method(x, y, {a: 1, b: 2})
Braces should be around the last parameter in a method call if the last parameter is a hash.
some_method(x, y, a: 1, b: 2)
some_method(x, y, {a: 1, b: 2})