自分の中の最低限の RuboCop 設定
#Ruby #RuboCop
code:yml
AllCops:
DisabledByDefault: true
Layout/IndentationStyle:
Enabled: true
Layout/IndentationConsistency:
Enabled: true
Layout/IndentationWidth:
Enabled: true
Width: 2
Layout/ExtraSpacing:
Enabled: true
Layout/EmptyLines:
Enabled: true
Layout/TrailingWhitespace:
Enabled: true
Layout/BlockAlignment:
Enabled: true
Layout/EmptyLineBetweenDefs:
Enabled: true
Layout/EmptyLinesAroundClassBody:
Enabled: true
Layout/EmptyLinesAroundBlockBody:
Enabled: true
Exclude:
- 'db/schema.rb'
Layout/EmptyLinesAroundMethodBody:
Enabled: true
Layout/EmptyLinesAroundBeginBody:
Enabled: true
Layout/EmptyLinesAroundModuleBody:
Enabled: true
Layout/FirstHashElementIndentation:
Enabled: true
EnforcedStyle: consistent
Layout/HashAlignment:
Enabled: true
Layout/FirstArrayElementIndentation:
Enabled: true
EnforcedStyle: consistent
Layout/ArrayAlignment:
Enabled: true
Layout/ClosingParenthesisIndentation:
Enabled: true
Layout/FirstArgumentIndentation:
Enabled: true