-
Notifications
You must be signed in to change notification settings - Fork 10
/
.rubocop.yml
340 lines (340 loc) · 6.78 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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
require:
- rubocop-rails
- rubocop-rspec
- rubocop-performance
AllCops:
NewCops: enable
Exclude:
- db/**/*
- bin/**/*
- Guardfile
- vendor/bundle/**/*
DisplayCopNames: false
DisplayStyleGuide: true
StyleGuideCopsOnly: false
TargetRubyVersion: 3.1
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
Style/BlockDelimiters:
EnforcedStyle: braces_for_chaining
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
Layout/DotPosition:
EnforcedStyle: leading
Layout/EmptyLineAfterGuardClause:
Enabled: false
Naming/FileName:
Enabled: true
Style/FormatString:
Enabled: true
EnforcedStyle: format
# TODO: enable this and transition to immutable strings
Style/FrozenStringLiteralComment:
Enabled: false
Style/GlobalVars:
Enabled: false
Style/GuardClause:
Enabled: true
MinBodyLength: 3
Style/IfUnlessModifier:
Enabled: true
Layout/FirstArrayElementIndentation:
EnforcedStyle: consistent
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
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": "[]"
Naming/PredicateName:
Enabled: true
NamePrefix:
- is_
- has_
- have_
ForbiddenPrefixes:
- is_
Exclude:
- app/graphql/types/**/*
Style/RaiseArgs:
Enabled: true
EnforcedStyle: exploded
Style/SingleLineMethods:
Enabled: true
AllowIfMethodIsEmpty: true
Style/StringLiterals:
EnforcedStyle: single_quotes
Layout/SpaceAroundEqualsInParameterDefault:
Enabled: true
EnforcedStyle: space
Layout/SpaceBeforeBlockBraces:
Enabled: true
EnforcedStyle: space
Layout/SpaceInsideBlockBraces:
Enabled: true
EnforcedStyle: space
EnforcedStyleForEmptyBraces: no_space
SpaceBeforeBlockParameters: true
Layout/SpaceInsideHashLiteralBraces:
Enabled: true
EnforcedStyle: space
EnforcedStyleForEmptyBraces: no_space
Style/SymbolProc:
Enabled: true
Layout/TrailingEmptyLines:
Enabled: true
EnforcedStyle: final_newline
Style/TrailingCommaInArguments:
Enabled: true
EnforcedStyleForMultiline: no_comma
Style/TrailingCommaInArrayLiteral:
Enabled: true
EnforcedStyleForMultiline: no_comma
Style/TrailingCommaInHashLiteral:
Enabled: true
EnforcedStyleForMultiline: no_comma
Style/TrivialAccessors:
Enabled: true
AllowDSLWriters: true
Naming/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/BlockLength:
Enabled: false
Metrics/ClassLength:
Enabled: true
CountComments: false
Max: 500
Metrics/ModuleLength:
Enabled: true
CountComments: false
Max: 500
Metrics/CyclomaticComplexity:
Enabled: true
Max: 10
Layout/LineLength:
Enabled: true
Max: 120
AllowURI: true
IgnoreCopDirectives: true
Exclude:
- config/routes.rb
- config/initializers/*
Metrics/MethodLength:
Enabled: true
CountComments: false
Max: 100
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
Naming/AccessorMethodName:
Enabled: true
Style/Alias:
Enabled: true
EnforcedStyle: prefer_alias_method
Style/ArrayJoin:
Enabled: true
Style/AsciiComments:
Enabled: false
Naming/AsciiIdentifiers:
Enabled: true
Style/Attr:
Enabled: true
Style/BlockComments:
Enabled: true
Style/ColonMethodCall:
Enabled: true
Style/Documentation:
Enabled: false
Style/EmptyLiteral:
Enabled: true
Style/EvenOdd:
Enabled: true
Lint/FlipFlop:
Enabled: true
Style/IfWithSemicolon:
Enabled: true
Style/Lambda:
EnforcedStyle: literal
# HACK: Until Rubocop is released with EnforcedStyle
Enabled: true
Layout/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/ClassAndModuleChildren:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Layout/SpaceBeforeFirstArg:
Enabled: true
Layout/SpaceAfterColon:
Enabled: true
Layout/SpaceAfterComma:
Enabled: true
Layout/SpaceAroundKeyword:
Enabled: true
Layout/SpaceAfterMethodName:
Enabled: true
Layout/SpaceAfterNot:
Enabled: true
Layout/SpaceAfterSemicolon:
Enabled: true
Layout/SpaceBeforeComma:
Enabled: true
Layout/SpaceBeforeComment:
Enabled: true
Layout/SpaceBeforeSemicolon:
Enabled: true
Layout/SpaceAroundOperators:
Enabled: true
Layout/SpaceInsideParens:
Enabled: true
Layout/SpaceInsideRangeLiteral:
Enabled: true
Style/SpecialGlobalVars:
Enabled: true
Layout/TrailingWhitespace:
Enabled: true
Style/UnlessElse:
Enabled: true
Style/VariableInterpolation:
Enabled: true
Style/WhenThen:
Enabled: true
Lint/Debugger:
Enabled: true
Lint/DeprecatedClassMethods:
Enabled: true
Security/Eval:
Enabled: true
Lint/SuppressedException:
Enabled: true
Lint/LiteralInInterpolation:
Enabled: true
Lint/Loop:
Enabled: true
Lint/MissingSuper:
Exclude:
- "app/components/**/*"
Lint/ParenthesesAsGroupedExpression:
Enabled: true
Lint/RequireParentheses:
Enabled: false
Lint/UnderscorePrefixedVariableName:
Enabled: true
Lint/UselessSetterCall:
Enabled: true
Rails/HasAndBelongsToMany:
Enabled: false
Rails/TimeZone:
Enabled: false
Rails/HelperInstanceVariable:
Enabled: false
RSpec/MultipleExpectations:
Enabled: false
RSpec/RepeatedExample:
Enabled: false
RSpec/SpecFilePathFormat:
Enabled: false
RSpec/SpecFilePathSuffix:
Enabled: false
RSpec/RepeatedDescription:
Exclude:
- "spec/policies/*"
RSpec/NamedSubject:
Enabled: false
RSpec/ExampleLength:
Max: 20
RSpec/MultipleMemoizedHelpers:
Enabled: false
RSpec/NestedGroups:
Enabled: false
RSpec/MessageSpies:
EnforcedStyle: receive
Rails/UnknownEnv:
Environments:
- production
- staging
- development
- test
Rails/I18nLocaleTexts:
Enabled: false