mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
52 lines
805 B
YAML
52 lines
805 B
YAML
AllCops:
|
|
RunRailsCops: true
|
|
|
|
Style/AlignParameters:
|
|
EnforcedStyle: with_fixed_indentation
|
|
|
|
Style/ClassLength:
|
|
CountComments: false
|
|
Max: 200
|
|
|
|
Style/CollectionMethods:
|
|
PreferredMethods:
|
|
collect: 'map'
|
|
collect!: 'map!'
|
|
detect: 'find'
|
|
find_all: 'select'
|
|
|
|
Style/EmptyLinesAroundBody:
|
|
Enabled: false
|
|
|
|
Style/EmptyLineBetweenDefs:
|
|
AllowAdjacentOneLineDefs: true
|
|
|
|
Style/Encoding:
|
|
EnforcedStyle: when_needed
|
|
|
|
Style/HashSyntax:
|
|
EnforcedStyle: hash_rockets
|
|
|
|
Style/IndentHash:
|
|
EnforcedStyle: consistent
|
|
|
|
Style/LineLength:
|
|
Max: 78
|
|
AllowURI: true
|
|
|
|
Style/IfUnlessModifier:
|
|
MaxLineLength: 78
|
|
|
|
Style/MethodLength:
|
|
CountComments: false
|
|
Max: 20
|
|
|
|
Style/SingleLineBlockParams:
|
|
Enabled: false
|
|
|
|
Style/StringLiterals:
|
|
Enabled: false
|
|
|
|
Style/WhileUntilModifier:
|
|
MaxLineLength: 78
|