-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop.yml
41 lines (34 loc) · 1.23 KB
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
################################################################################
# METRICS
################################################################################
Metrics/LineLength:
Max: 120
################################################################################
# LAYOUT
################################################################################
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Layout/DotPosition:
EnforcedStyle: trailing
################################################################################
# STYLES
################################################################################
# The `do this and return` pattern is too useful to discard, but we don't want
# to deal with them in conditionals, where order-of-operations matters. So we
# restrict to that.
# see http://www.prestonlee.com/2010/08/04/ruby-on-the-perl-origins-of-and-versus-and-and-or/
Style/AndOr:
EnforcedStyle: conditionals
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
# DoubleNegation is a useful pattern
Style/DoubleNegation:
Enabled: false
Style/TernaryParentheses:
Enabled: false