I am using rubocop for the rails 5 project, and I added to my .rubocop.ymlthis:
Rails:
Enabled: true
I noticed, however, that rule ( Style/IndentationConsistency) fails, and I had to explicitly add it as follows:
Style/IndentationConsistency:
EnforcedStyle: rails
Is this normal, or am I doing something wrong?
source
share