-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
146 lines (109 loc) · 2.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
AbcSize:
Enabled: false
# Enforce outdenting of access modifiers (i.e. public, private, protected)
AccessModifierIndentation:
EnforcedStyle: outdent
Alias:
EnforcedStyle: prefer_alias_method
AllCops:
Include:
- 'Gemfile'
- 'Rakefile'
- 'delayed_job.gemspec'
TargetRubyVersion: 2.1
RedundantBlockCall:
Enabled: false
BlockLength:
Enabled: false
# Avoid more than `Max` levels of nesting.
BlockNesting:
Max: 2
# Indentation of when/else
CaseIndentation:
EnforcedStyle: end
IndentOneStep: false
ClassLength:
Max: 100
# Align with the style guide.
CollectionMethods:
PreferredMethods:
collect: 'map'
collect!: 'map!'
reduce: 'inject'
find: 'detect'
find_all: 'select'
# Disable documentation checking until a class needs to be documented once
Documentation:
Enabled: false
# Allow dots at the end of lines
DotPosition:
EnforcedStyle: trailing
DoubleNegation:
Enabled: false
# Detects any duplication as issue including our conditional requires
DuplicatedGem:
Enabled: false
EmptyLinesAroundAccessModifier:
Enabled: true
# Don't require magic comment at the top of every file
Encoding:
Enabled: false
# Align ends correctly
EndAlignment:
EnforcedStyleAlignWith: variable
Style/FrozenStringLiteralComment:
Enabled: false
# Enforce Ruby 1.8-compatible hash syntax
HashSyntax:
EnforcedStyle: hash_rockets
Lambda:
Enabled: false
LineLength:
Enabled: false
MethodLength:
CountComments: false
Max: 53
MultilineOperationIndentation:
EnforcedStyle: indented
Style/NumericPredicate:
Enabled: false
# Avoid long parameter lists
ParameterLists:
Max: 4
CountKeywordArgs: true
PercentLiteralDelimiters:
PreferredDelimiters:
'%': ()
'%i': ()
'%q': ()
'%Q': ()
'%r': '{}'
'%s': ()
'%w': '[]'
'%W': '[]'
'%x': ()
RaiseArgs:
EnforcedStyle: exploded
RegexpLiteral:
Enabled: false
RescueModifier:
Enabled: false
Style/SafeNavigation:
Enabled: false
SignalException:
EnforcedStyle: only_raise
# No spaces inside hash literals
SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Style/SymbolArray:
Enabled: false
SymbolProc:
Enabled: false
TrailingCommaInLiteral:
Enabled: false
TrailingCommaInArguments:
Enabled: false
YAMLLoad:
Enabled: false
ZeroLengthPredicate:
Enabled: false