-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
476 lines (388 loc) · 8.99 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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
require:
- rubocop-minitest
- rubocop-graphql
- rubocop-rake
- rubocop-performance
- rubocop/rubycw
- rubocop-thread_safety
AllCops:
NewCops: enable
RubyInterpreters:
- ruby
- rake
- rbx
# Include common Ruby source files.
Include:
- '**/*.rb'
- '**/*.arb'
- '**/*.axlsx'
- '**/*.builder'
- '**/*.fcgi'
- '**/*.gemfile'
- '**/*.gemspec'
- '**/*.god'
- '**/*.jb'
- '**/*.jbuilder'
- '**/*.mspec'
- '**/*.opal'
- '**/*.pluginspec'
- '**/*.podspec'
- '**/*.rabl'
- '**/*.rake'
- '**/*.rbuild'
- '**/*.rbw'
- '**/*.rbx'
- '**/*.ru'
- '**/*.ruby'
- '**/*.spec'
- '**/*.thor'
- '**/*.watchr'
- '**/.irbrc'
- '**/.pryrc'
- '**/buildfile'
- '**/Appraisals'
- '**/Berksfile'
- '**/Brewfile'
- '**/Buildfile'
- '**/Capfile'
- '**/Cheffile'
- '**/Dangerfile'
- '**/Deliverfile'
- '**/Fastfile'
- '**/*Fastfile'
- '**/Gemfile'
- '**/Guardfile'
- '**/Jarfile'
- '**/Mavenfile'
- '**/Podfile'
- '**/Puppetfile'
- '**/Rakefile'
- '**/Snapfile'
- '**/Thorfile'
- '**/Vagabondfile'
- '**/Vagrantfile'
Exclude:
- 'node_modules/**/*'
- 'vendor/**/*'
- '.git/**/*'
- 'spec/fixtures/**/*'
- 'db/schema.rb'
- 'bin/*'
- 'script/**/*'
- 'components/**/*'
- 'lib/pry-remote.rb'
- 'lib/pry-state.rb'
- 'lib/pry-state/**/*'
- 'lib/pry-yes.rb'
- !ruby/regexp /old_and_unused\.rb$/
TargetRubyVersion:
3.1
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
Style/CommandLiteral:
EnforcedStyle: mixed
Layout/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
Style/AndOr:
Description: 'Use &&/|| instead of and/or.'
Enabled: false
Style/ClassAndModuleChildren:
Description: 'Checks style of children classes and modules.'
Enabled: false
Style/GuardClause:
Description: 'Check for conditionals that can be replaced with guard clauses'
Enabled: false
Style/Lambda:
Description: 'Use the new lambda literal syntax for single-line blocks.'
Enabled: false
Style/LambdaCall:
Description: 'Use lambda.call(...) instead of lambda.(...).'
Enabled: false
Style/NumericLiterals:
Description: >-
Add underscores to large numeric literals to improve their
readability.
Enabled: false
Style/PerlBackrefs:
Description: 'Avoid Perl-style regex back references.'
Enabled: false
Naming/PredicateName:
Description: 'Check the names of predicate methods.'
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
Description: "Use spaces inside hash literal braces - or don't."
Enabled: false
Style/SpecialGlobalVars:
Description: 'Avoid Perl-style global variables.'
Enabled: false
Style/WordArray:
Description: 'Use %w or %W for arrays of words.'
Enabled: false
Metrics/ClassLength:
Description: 'Avoid classes longer than 100 lines of code.'
Enabled: false
# Metrics/ModuleLength:
# Description: 'Avoid modules longer than 100 lines of code.'
# Enabled: false
Layout/LineLength:
Enabled: false
Metrics/MethodLength:
Description: 'Avoid methods longer than 10 lines of code.'
Enabled: false
Style/SingleLineBlockParams:
Description: 'Enforces the names of some block params.'
Enabled: false
Style/AsciiComments:
Enabled: false
Style/Documentation:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/Not:
Enabled: false
Naming/AccessorMethodName:
Enabled: false
Style/LineEndConcatenation:
Enabled: false
Style/ClassCheck:
Enabled: false
Style/PercentLiteralDelimiters:
Enabled: false
Style/EmptyMethod:
Enabled: false
Style/RescueModifier:
Enabled: false
Naming/FileName:
Exclude: [Gemfile Capfile]
# Layout/MultilineMethodCallIndentation:
# EnforcedStyle: indented
Style/Semicolon:
AllowAsExpressionSeparator: true
Metrics/AbcSize:
Enabled: false
Style/IfInsideElse:
Enabled: false
Style/BlockDelimiters:
Enabled: false
Style/MethodCallWithoutArgsParentheses:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Layout/SpaceAroundOperators:
Enabled: false
Layout/SpaceInLambdaLiteral:
Enabled: false
Style/StabbyLambdaParentheses:
Enabled: false
Style/ModuleFunction:
Enabled: false
Lint/UnderscorePrefixedVariableName:
Enabled: false
Security/JSONLoad:
Enabled: false
Layout/ExtraSpacing:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Layout/SpaceInsideBlockBraces:
Enabled: false
Style/SymbolArray:
Enabled: false
Lint/FlipFlop:
Enabled: false
Style/GlobalVars:
Enabled: false
Metrics/BlockLength:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingUnderscoreVariable:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Style/StringLiterals:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Lint/ParenthesesAsGroupedExpression:
Enabled: false
Lint/ShadowingOuterLocalVariable:
Enabled: false
Lint/AmbiguousBlockAssociation:
Enabled: false
Style/Next:
Enabled: false
Style/NegatedIf:
Enabled: false
Style/TernaryParentheses:
Enabled: false
Style/RedundantSelf:
Enabled: false
Layout/HashAlignment:
EnforcedColonStyle: table
# 这个默认值就是 false
Layout/MultilineMethodArgumentLineBreaks:
Enabled: false
# Layout/ParameterAlignment:
# Description: >-
# Align the parameters of a method call if they span more
# than one line.
# Enabled: false
# 默认 true
# Layout/FirstArgumentIndentation:
# Enabled: true
# 默认 true
# Layout/ArgumentAlignment:
# Enabled: true
# 默认 true
# Layout/FirstArrayElementIndentation:
# EnforcedStyle: consistent
# 默认 true
# Layout/FirstHashElementIndentation:
# Description: 'Checks the indentation of the first key in a hash literal.'
# Enabled: false
Naming/MethodParameterName:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Naming/VariableNumber:
Enabled: false
# new added
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/SpaceAroundMethodCallOperator:
Enabled: true
Lint/BinaryOperatorWithIdenticalOperands:
Enabled: true
Lint/DeprecatedOpenSSLConstant:
Enabled: true
Lint/DuplicateElsifCondition:
Enabled: true
Lint/DuplicateRescueException:
Enabled: true
Lint/EmptyConditionalBody:
Enabled: true
Lint/FloatComparison:
Enabled: true
Lint/MissingSuper:
Enabled: true
Lint/MixedRegexpCaptureTypes:
Enabled: true
Lint/OutOfRangeRegexpRef:
Enabled: true
Lint/RaiseException:
Enabled: true
Lint/SelfAssignment:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Lint/TopLevelReturnWithArgument:
Enabled: true
Lint/UnreachableLoop:
Enabled: true
Lint/AmbiguousOperatorPrecedence:
Enabled: false
Style/AccessorGrouping:
Enabled: true
Style/ArrayCoercion:
Enabled: true
Style/BisectedAttrAccessor:
Enabled: true
Style/CaseLikeIf:
Enabled: true
Style/ExplicitBlockArgument:
Enabled: true
Style/ExponentialNotation:
Enabled: true
Style/GlobalStdStream:
Enabled: false
Style/HashAsLastArrayItem:
Enabled: true
Style/HashEachMethods:
Enabled: true
Style/HashLikeCase:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/OptionalBooleanParameter:
Enabled: true
Style/RedundantAssignment:
Enabled: true
Style/RedundantFetchBlock:
Enabled: true
Style/RedundantFileExtensionInRequire:
Enabled: true
Style/RedundantRegexpCharacterClass:
Enabled: true
Style/RedundantRegexpEscape:
Enabled: true
Style/SingleArgumentDig:
Enabled: true
Style/SlicingWithRange:
Enabled: true
Style/StringConcatenation:
Enabled: true
Performance/AncestorsInclude:
Enabled: true
Performance/BigDecimalWithNumericArgument:
Enabled: false
Performance/RedundantSortBlock:
Enabled: true
Performance/RedundantStringChars:
Enabled: true
Performance/ReverseFirst:
Enabled: true
Performance/SortReverse:
Enabled: true
Performance/Squeeze:
Enabled: true
Performance/StringInclude:
Enabled: true
Bundler/OrderedGems:
Enabled: false
Performance/RedundantBlockCall:
Enabled: false
Minitest/AssertInDelta:
Enabled: false
Minitest/MultipleAssertions:
Enabled: false
# Rails/AssertNot:
# Enabled: false
# Rails/FindEach:
# Enabled: false
Rails/DurationArithmetic:
Enabled: false
Rails/RefuteMethods:
Enabled: false
Rails/Output:
Enabled: false
Rails/NegateInclude:
Enabled: false
GraphQL/OrderedArguments:
Enabled: false
GraphQL/OrderedFields:
Enabled: false
GraphQL/FieldDefinitions:
Enabled: false
# 这个很容易出错,无法知道真实意图,也许就是不转义,例如:'#{keyword}'
Lint/InterpolationCheck:
Enabled: false
# Style/HashSyntax:
# # always 是默认值
# EnforcedShorthandSyntax: either
Style/RescueStandardError:
EnforcedStyle: implicit
Style/FetchEnvVar:
Enabled: false
Gemspec/OrderedDependencies:
Enabled: false