-
Notifications
You must be signed in to change notification settings - Fork 18
/
.rubocop.yml
259 lines (259 loc) · 4.94 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
AllCops:
RunRailsCops: false
DisplayCopNames: false
DisplayStyleGuide: true
StyleGuideCopsOnly: false
Style/BlockDelimiters:
EnforcedStyle: semantic
Style/CollectionMethods:
PreferredMethods:
collect: map
collect!: map!
inject: reduce
detect: find
find_all: select
Style/CommentAnnotation:
Enabled: true
Keywords:
- TODO
- FIXME
- OPTIMIZE
- HACK
- REVIEW
- DEPRECATED
Style/DotPosition:
EnforcedStyle: leading
Style/FileName:
Enabled: true
Style/FormatString:
Enabled: true
EnforcedStyle: format
Style/GlobalVars:
Enabled: true
Style/GuardClause:
Enabled: true
MinBodyLength: 3
Style/IfUnlessModifier:
Enabled: true
MaxLineLength: 80
Style/LambdaCall:
Enabled: true
Style/Next:
Enabled: true
MinBodyLength: 3
Style/NumericLiterals:
Enabled: true
MinDigits: 5
Style/PercentLiteralDelimiters:
Enabled: true
PreferredDelimiters:
"%": "()"
"%i": "()"
"%q": "()"
"%Q": "()"
"%r": "{}"
"%s": "()"
"%w": "()"
"%W": "()"
"%x": "()"
Style/PredicateName:
Enabled: true
NamePrefix:
- is_
- has_
- have_
NamePrefixBlacklist:
- is_
Style/RaiseArgs:
Enabled: true
EnforcedStyle: exploded
Style/SingleLineMethods:
Enabled: true
AllowIfMethodIsEmpty: true
Style/StringLiterals:
EnforcedStyle: single_quotes
Style/SpaceAroundEqualsInParameterDefault:
Enabled: true
EnforcedStyle: space
Style/SpaceBeforeBlockBraces:
Enabled: true
EnforcedStyle: space
Style/SpaceInsideBlockBraces:
Enabled: true
EnforcedStyle: space
EnforcedStyleForEmptyBraces: no_space
SpaceBeforeBlockParameters: true
Style/SpaceInsideHashLiteralBraces:
Enabled: true
EnforcedStyle: space
EnforcedStyleForEmptyBraces: no_space
Style/SymbolProc:
Enabled: true
Style/TrailingBlankLines:
Enabled: true
EnforcedStyle: final_newline
Style/TrailingComma:
Enabled: true
EnforcedStyleForMultiline: comma
Style/TrivialAccessors:
Enabled: true
AllowDSLWriters: true
Style/VariableName:
Enabled: true
EnforcedStyle: snake_case
Style/WordArray:
Enabled: true
MinSize: 2
Metrics/AbcSize:
Enabled: true
Max: 25
Metrics/BlockNesting:
Enabled: true
Max: 5
Metrics/ClassLength:
Enabled: true
CountComments: false
Max: 500
Metrics/CyclomaticComplexity:
Enabled: true
Max: 10
Metrics/LineLength:
Enabled: true
Max: 80
AllowURI: true
Metrics/MethodLength:
Enabled: true
CountComments: false
Max: 20
Metrics/ParameterLists:
Enabled: true
Max: 5
CountKeywordArgs: false
Metrics/PerceivedComplexity:
Enabled: true
Max: 8
Lint/AssignmentInCondition:
Enabled: true
AllowSafeAssignment: true
Style/InlineComment:
Enabled: false
Style/MethodCalledOnDoEndBlock:
Enabled: true
Style/SymbolArray:
Enabled: true
Style/AccessorMethodName:
Enabled: true
Style/Alias:
Enabled: true
Style/ArrayJoin:
Enabled: true
Style/AsciiComments:
Enabled: true
Style/AsciiIdentifiers:
Enabled: true
Style/Attr:
Enabled: true
Style/BlockComments:
Enabled: true
Style/ColonMethodCall:
Enabled: true
Style/DeprecatedHashMethods:
Enabled: true
Style/Documentation:
Enabled: false
Style/EmptyLiteral:
Enabled: true
Style/EvenOdd:
Enabled: true
Style/FlipFlop:
Enabled: true
Style/IfWithSemicolon:
Enabled: true
Style/Lambda:
Enabled: true
Style/LeadingCommentSpace:
Enabled: true
Style/MultilineBlockChain:
Enabled: true
Style/MultilineTernaryOperator:
Enabled: true
Style/NegatedIf:
Enabled: true
Style/NestedTernaryOperator:
Enabled: true
Style/NilComparison:
Enabled: true
Style/Not:
Enabled: true
Style/OneLineConditional:
Enabled: true
Style/PerlBackrefs:
Enabled: true
Style/RedundantBegin:
Enabled: true
Style/RedundantSelf:
Enabled: true
Style/RescueModifier:
Enabled: true
Style/SelfAssignment:
Enabled: true
Style/SingleSpaceBeforeFirstArg:
Enabled: true
Style/SpaceAfterColon:
Enabled: true
Style/SpaceAfterComma:
Enabled: true
Style/SpaceAfterControlKeyword:
Enabled: true
Style/SpaceAfterMethodName:
Enabled: true
Style/SpaceAfterNot:
Enabled: true
Style/SpaceAfterSemicolon:
Enabled: true
Style/SpaceBeforeComma:
Enabled: true
Style/SpaceBeforeComment:
Enabled: true
Style/SpaceBeforeSemicolon:
Enabled: true
Style/SpaceAroundOperators:
Enabled: true
Style/SpaceBeforeModifierKeyword:
Enabled: true
Style/SpaceInsideBrackets:
Enabled: true
Style/SpaceInsideParens:
Enabled: true
Style/SpaceInsideRangeLiteral:
Enabled: true
Style/SpecialGlobalVars:
Enabled: true
Style/TrailingWhitespace:
Enabled: true
Style/UnlessElse:
Enabled: true
Style/VariableInterpolation:
Enabled: true
Style/WhenThen:
Enabled: true
Lint/Debugger:
Enabled: true
Lint/DeprecatedClassMethods:
Enabled: true
Lint/Eval:
Enabled: true
Lint/HandleExceptions:
Enabled: true
Lint/LiteralInInterpolation:
Enabled: true
Lint/Loop:
Enabled: true
Lint/ParenthesesAsGroupedExpression:
Enabled: true
Lint/RequireParentheses:
Enabled: false
Lint/UnderscorePrefixedVariableName:
Enabled: true
Lint/UselessSetterCall:
Enabled: true