I have RuboCop installed with Rubymine and the validation errors for rubocop are displayed correctly.
Running β+ Alt+ Lconverts the code into rubimine style that conflicts with rubocop style.
For instance:
some_array = 10.times.map {|index| index * 3}
some_array = 10.times.map { |index| index * 3 }
rubocop places spaces inside inline blocks. little thing i know. but ruby ββauto formats without spaces, so I have a crypton of inspection notifications.
source
share