zentool 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +609 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +16 -0
- data/Gemfile.lock +80 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/zentool +3 -0
- data/lib/zentool.rb +80 -0
- data/lib/zentool/article_helper.rb +102 -0
- data/lib/zentool/graph.rb +117 -0
- data/lib/zentool/metrics.rb +172 -0
- data/lib/zentool/ticket.rb +10 -0
- data/lib/zentool/version.rb +3 -0
- data/lib/zentool/zendesk_article.rb +84 -0
- data/lib/zentool/zendesk_ticket.rb +172 -0
- data/zentool.gemspec +35 -0
- metadata +111 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: '093fd2155f033c7baf55c7aeaa17a510be3769c2'
|
4
|
+
data.tar.gz: 3d9fab8a55c36c4ece4f8f57c393b4ef6a5f5152
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3d86d219e0fac8050c940c01fe4ff0d7fb39e9e1bf6708ad9716a1c70ed2f2ea3ae91f09f82dec4be1dc0b285c46b2d8d8c2d83f8a1b2f5897e5577e7a66c038
|
7
|
+
data.tar.gz: bb8fa6b24dfe1a39c3aec90c22689e7a12927a797db55bb747ef60cd92bbf2004e9f0da4717c80e4f50dcbf871d6e78723ae53ef12800ea9a42b7d45f62d5d55
|
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
.DS_Store
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,609 @@
|
|
1
|
+
Metrics/LineLength:
|
2
|
+
Enabled: false
|
3
|
+
|
4
|
+
Style/StringLiterals:
|
5
|
+
EnforcedStyle: single_quotes
|
6
|
+
|
7
|
+
Style/HashSyntax:
|
8
|
+
EnforcedStyle: ruby19
|
9
|
+
|
10
|
+
Metrics/ClassLength:
|
11
|
+
Enabled: false
|
12
|
+
|
13
|
+
Style/BracesAroundHashParameters:
|
14
|
+
Enabled: true
|
15
|
+
EnforcedStyle: context_dependent
|
16
|
+
|
17
|
+
Style/LeadingCommentSpace:
|
18
|
+
Enabled: true
|
19
|
+
|
20
|
+
Style/ExtraSpacing:
|
21
|
+
Enabled: true
|
22
|
+
|
23
|
+
Lint/DeprecatedClassMethods:
|
24
|
+
Enabled: true
|
25
|
+
|
26
|
+
Style/DoubleNegation:
|
27
|
+
Enabled: false
|
28
|
+
|
29
|
+
Style/DotPosition:
|
30
|
+
EnforcedStyle: leading
|
31
|
+
|
32
|
+
# TODO: Reconfigure cops below or re-enable
|
33
|
+
|
34
|
+
# Offense count: 31
|
35
|
+
Lint/AmbiguousOperator:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
# Offense count: 49
|
39
|
+
Lint/AmbiguousRegexpLiteral:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
# Offense count: 54
|
43
|
+
# Configuration parameters: AllowSafeAssignment.
|
44
|
+
Lint/AssignmentInCondition:
|
45
|
+
Enabled: false
|
46
|
+
|
47
|
+
# Offense count: 2
|
48
|
+
# Cop supports --auto-correct.
|
49
|
+
Lint/BlockAlignment:
|
50
|
+
Enabled: false
|
51
|
+
|
52
|
+
# Offense count: 3
|
53
|
+
# Configuration parameters: AlignWith, SupportedStyles.
|
54
|
+
Lint/DefEndAlignment:
|
55
|
+
Enabled: false
|
56
|
+
|
57
|
+
|
58
|
+
# Offense count: 54
|
59
|
+
# Configuration parameters: AlignWith, SupportedStyles.
|
60
|
+
Lint/EndAlignment:
|
61
|
+
Enabled: false
|
62
|
+
|
63
|
+
# Offense count: 1
|
64
|
+
Lint/EnsureReturn:
|
65
|
+
Enabled: false
|
66
|
+
|
67
|
+
# Offense count: 10
|
68
|
+
Lint/Eval:
|
69
|
+
Enabled: false
|
70
|
+
|
71
|
+
# Offense count: 1
|
72
|
+
Lint/HandleExceptions:
|
73
|
+
Enabled: false
|
74
|
+
|
75
|
+
# Offense count: 2
|
76
|
+
Lint/Loop:
|
77
|
+
Enabled: false
|
78
|
+
|
79
|
+
# Offense count: 130
|
80
|
+
Lint/ParenthesesAsGroupedExpression:
|
81
|
+
Enabled: false
|
82
|
+
|
83
|
+
# Offense count: 13
|
84
|
+
Lint/RescueException:
|
85
|
+
Enabled: false
|
86
|
+
|
87
|
+
# Offense count: 54
|
88
|
+
Lint/ShadowingOuterLocalVariable:
|
89
|
+
Enabled: false
|
90
|
+
|
91
|
+
# Offense count: 2
|
92
|
+
# Cop supports --auto-correct.
|
93
|
+
Lint/SpaceBeforeFirstArg:
|
94
|
+
Enabled: false
|
95
|
+
|
96
|
+
# Offense count: 28
|
97
|
+
# Cop supports --auto-correct.
|
98
|
+
Lint/StringConversionInInterpolation:
|
99
|
+
Enabled: false
|
100
|
+
|
101
|
+
# Offense count: 1
|
102
|
+
Lint/UnderscorePrefixedVariableName:
|
103
|
+
Enabled: false
|
104
|
+
|
105
|
+
# Offense count: 107
|
106
|
+
# Cop supports --auto-correct.
|
107
|
+
Lint/UnusedBlockArgument:
|
108
|
+
Enabled: false
|
109
|
+
|
110
|
+
# Offense count: 37
|
111
|
+
# Cop supports --auto-correct.
|
112
|
+
Lint/UnusedMethodArgument:
|
113
|
+
Enabled: false
|
114
|
+
|
115
|
+
# Offense count: 6
|
116
|
+
Lint/UselessAccessModifier:
|
117
|
+
Enabled: false
|
118
|
+
|
119
|
+
# Offense count: 157
|
120
|
+
Lint/UselessAssignment:
|
121
|
+
Enabled: false
|
122
|
+
|
123
|
+
# Offense count: 14
|
124
|
+
Lint/Void:
|
125
|
+
Enabled: false
|
126
|
+
|
127
|
+
# Offense count: 396
|
128
|
+
Metrics/AbcSize:
|
129
|
+
Max: 272
|
130
|
+
|
131
|
+
# Offense count: 4
|
132
|
+
Metrics/BlockNesting:
|
133
|
+
Max: 4
|
134
|
+
|
135
|
+
# Offense count: 60
|
136
|
+
Metrics/CyclomaticComplexity:
|
137
|
+
Max: 40
|
138
|
+
|
139
|
+
# Offense count: 535
|
140
|
+
# Configuration parameters: CountComments.
|
141
|
+
Metrics/MethodLength:
|
142
|
+
Max: 264
|
143
|
+
|
144
|
+
# Offense count: 3
|
145
|
+
# Configuration parameters: CountKeywordArgs.
|
146
|
+
Metrics/ParameterLists:
|
147
|
+
Max: 7
|
148
|
+
|
149
|
+
# Offense count: 48
|
150
|
+
Metrics/PerceivedComplexity:
|
151
|
+
Max: 43
|
152
|
+
|
153
|
+
# Offense count: 2
|
154
|
+
# Cop supports --auto-correct.
|
155
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
156
|
+
Style/AccessModifierIndentation:
|
157
|
+
Enabled: false
|
158
|
+
|
159
|
+
# Offense count: 5
|
160
|
+
Style/AccessorMethodName:
|
161
|
+
Enabled: false
|
162
|
+
|
163
|
+
# Offense count: 29
|
164
|
+
# Cop supports --auto-correct.
|
165
|
+
Style/AlignArray:
|
166
|
+
Enabled: false
|
167
|
+
|
168
|
+
# Offense count: 133
|
169
|
+
# Cop supports --auto-correct.
|
170
|
+
# Configuration parameters: EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle, SupportedLastArgumentHashStyles.
|
171
|
+
Style/AlignHash:
|
172
|
+
Enabled: false
|
173
|
+
|
174
|
+
# Offense count: 143
|
175
|
+
# Cop supports --auto-correct.
|
176
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
177
|
+
Style/AlignParameters:
|
178
|
+
Enabled: false
|
179
|
+
|
180
|
+
# Offense count: 129
|
181
|
+
# Cop supports --auto-correct.
|
182
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
183
|
+
Style/BarePercentLiterals:
|
184
|
+
Enabled: false
|
185
|
+
|
186
|
+
# Offense count: 6
|
187
|
+
# Cop supports --auto-correct.
|
188
|
+
Style/BlockEndNewline:
|
189
|
+
Enabled: false
|
190
|
+
|
191
|
+
# Offense count: 372
|
192
|
+
# Cop supports --auto-correct.
|
193
|
+
Style/Blocks:
|
194
|
+
Enabled: false
|
195
|
+
|
196
|
+
# Offense count: 1
|
197
|
+
Style/CaseEquality:
|
198
|
+
Enabled: false
|
199
|
+
|
200
|
+
# Offense count: 109
|
201
|
+
# Configuration parameters: IndentWhenRelativeTo, SupportedStyles, IndentOneStep.
|
202
|
+
Style/CaseIndentation:
|
203
|
+
Enabled: false
|
204
|
+
|
205
|
+
# Offense count: 201
|
206
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
207
|
+
Style/ClassAndModuleChildren:
|
208
|
+
Enabled: false
|
209
|
+
|
210
|
+
# Offense count: 1
|
211
|
+
# Cop supports --auto-correct.
|
212
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
213
|
+
Style/ClassCheck:
|
214
|
+
Enabled: false
|
215
|
+
|
216
|
+
# Offense count: 2
|
217
|
+
# Cop supports --auto-correct.
|
218
|
+
Style/ClassMethods:
|
219
|
+
Enabled: false
|
220
|
+
|
221
|
+
# Offense count: 43
|
222
|
+
Style/ClassVars:
|
223
|
+
Enabled: false
|
224
|
+
|
225
|
+
# Offense count: 10
|
226
|
+
# Cop supports --auto-correct.
|
227
|
+
Style/ColonMethodCall:
|
228
|
+
Enabled: false
|
229
|
+
|
230
|
+
# Offense count: 3
|
231
|
+
# Cop supports --auto-correct.
|
232
|
+
Style/CommentIndentation:
|
233
|
+
Enabled: false
|
234
|
+
|
235
|
+
# Offense count: 2
|
236
|
+
Style/ConstantName:
|
237
|
+
Enabled: false
|
238
|
+
|
239
|
+
# Offense count: 16
|
240
|
+
# Cop supports --auto-correct.
|
241
|
+
Style/DeprecatedHashMethods:
|
242
|
+
Enabled: false
|
243
|
+
|
244
|
+
# Offense count: 1324
|
245
|
+
Style/Documentation:
|
246
|
+
Enabled: false
|
247
|
+
|
248
|
+
# Offense count: 7
|
249
|
+
Style/EachWithObject:
|
250
|
+
Enabled: false
|
251
|
+
|
252
|
+
# Offense count: 44
|
253
|
+
# Cop supports --auto-correct.
|
254
|
+
Style/ElseAlignment:
|
255
|
+
Enabled: false
|
256
|
+
|
257
|
+
# Offense count: 8
|
258
|
+
Style/EmptyElse:
|
259
|
+
Enabled: false
|
260
|
+
|
261
|
+
# Offense count: 2
|
262
|
+
# Cop supports --auto-correct.
|
263
|
+
# Configuration parameters: AllowAdjacentOneLineDefs.
|
264
|
+
Style/EmptyLineBetweenDefs:
|
265
|
+
Enabled: false
|
266
|
+
|
267
|
+
# Offense count: 13
|
268
|
+
# Cop supports --auto-correct.
|
269
|
+
Style/EmptyLines:
|
270
|
+
Enabled: false
|
271
|
+
|
272
|
+
# Offense count: 4
|
273
|
+
# Cop supports --auto-correct.
|
274
|
+
Style/EmptyLinesAroundAccessModifier:
|
275
|
+
Enabled: false
|
276
|
+
|
277
|
+
# Offense count: 12
|
278
|
+
# Cop supports --auto-correct.
|
279
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
280
|
+
Style/EmptyLinesAroundBlockBody:
|
281
|
+
Enabled: false
|
282
|
+
|
283
|
+
# Offense count: 7
|
284
|
+
# Cop supports --auto-correct.
|
285
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
286
|
+
Style/EmptyLinesAroundClassBody:
|
287
|
+
Enabled: false
|
288
|
+
|
289
|
+
# Offense count: 3
|
290
|
+
# Cop supports --auto-correct.
|
291
|
+
Style/EmptyLinesAroundMethodBody:
|
292
|
+
Enabled: false
|
293
|
+
|
294
|
+
# Offense count: 16
|
295
|
+
# Cop supports --auto-correct.
|
296
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
297
|
+
Style/EmptyLinesAroundModuleBody:
|
298
|
+
Enabled: false
|
299
|
+
|
300
|
+
# Offense count: 3
|
301
|
+
# Cop supports --auto-correct.
|
302
|
+
Style/EmptyLiteral:
|
303
|
+
Enabled: false
|
304
|
+
|
305
|
+
# Offense count: 56
|
306
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
307
|
+
Style/FormatString:
|
308
|
+
Enabled: false
|
309
|
+
|
310
|
+
# Offense count: 27
|
311
|
+
# Configuration parameters: AllowedVariables.
|
312
|
+
Style/GlobalVars:
|
313
|
+
Enabled: false
|
314
|
+
|
315
|
+
# Offense count: 139
|
316
|
+
# Configuration parameters: MinBodyLength.
|
317
|
+
Style/GuardClause:
|
318
|
+
Enabled: false
|
319
|
+
|
320
|
+
# Offense count: 87
|
321
|
+
# Configuration parameters: MaxLineLength.
|
322
|
+
Style/IfUnlessModifier:
|
323
|
+
Enabled: false
|
324
|
+
|
325
|
+
# Offense count: 17
|
326
|
+
# Cop supports --auto-correct.
|
327
|
+
Style/IndentArray:
|
328
|
+
Enabled: false
|
329
|
+
|
330
|
+
# Offense count: 21
|
331
|
+
# Cop supports --auto-correct.
|
332
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
333
|
+
Style/IndentHash:
|
334
|
+
Enabled: false
|
335
|
+
|
336
|
+
# Offense count: 48
|
337
|
+
# Cop supports --auto-correct.
|
338
|
+
Style/IndentationConsistency:
|
339
|
+
Enabled: false
|
340
|
+
|
341
|
+
# Offense count: 77
|
342
|
+
# Cop supports --auto-correct.
|
343
|
+
# Configuration parameters: Width.
|
344
|
+
Style/IndentationWidth:
|
345
|
+
Enabled: false
|
346
|
+
|
347
|
+
# Offense count: 127
|
348
|
+
Style/Lambda:
|
349
|
+
Enabled: false
|
350
|
+
|
351
|
+
# Offense count: 9
|
352
|
+
# Cop supports --auto-correct.
|
353
|
+
Style/LineEndConcatenation:
|
354
|
+
Enabled: false
|
355
|
+
|
356
|
+
# Offense count: 16
|
357
|
+
# Cop supports --auto-correct.
|
358
|
+
Style/MethodCallParentheses:
|
359
|
+
Enabled: false
|
360
|
+
|
361
|
+
# Offense count: 21
|
362
|
+
# Cop supports --auto-correct.
|
363
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
364
|
+
Style/MethodDefParentheses:
|
365
|
+
Enabled: false
|
366
|
+
|
367
|
+
# Offense count: 3
|
368
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
369
|
+
Style/MethodName:
|
370
|
+
Enabled: false
|
371
|
+
|
372
|
+
# Offense count: 3
|
373
|
+
Style/ModuleFunction:
|
374
|
+
Enabled: false
|
375
|
+
|
376
|
+
# Offense count: 6
|
377
|
+
Style/MultilineBlockChain:
|
378
|
+
Enabled: false
|
379
|
+
|
380
|
+
# Offense count: 21
|
381
|
+
# Cop supports --auto-correct.
|
382
|
+
Style/MultilineBlockLayout:
|
383
|
+
Enabled: false
|
384
|
+
|
385
|
+
# Offense count: 2
|
386
|
+
# Cop supports --auto-correct.
|
387
|
+
Style/MultilineIfThen:
|
388
|
+
Enabled: false
|
389
|
+
|
390
|
+
# Offense count: 279
|
391
|
+
# Cop supports --auto-correct.
|
392
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
393
|
+
Style/MultilineOperationIndentation:
|
394
|
+
Enabled: false
|
395
|
+
|
396
|
+
# Offense count: 2
|
397
|
+
# Cop supports --auto-correct.
|
398
|
+
Style/NegatedIf:
|
399
|
+
Enabled: false
|
400
|
+
|
401
|
+
# Offense count: 1
|
402
|
+
Style/NestedTernaryOperator:
|
403
|
+
Enabled: false
|
404
|
+
|
405
|
+
# Offense count: 17
|
406
|
+
# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
|
407
|
+
Style/Next:
|
408
|
+
Enabled: false
|
409
|
+
|
410
|
+
# Offense count: 1
|
411
|
+
# Cop supports --auto-correct.
|
412
|
+
Style/NilComparison:
|
413
|
+
Enabled: false
|
414
|
+
|
415
|
+
# Offense count: 2
|
416
|
+
# Cop supports --auto-correct.
|
417
|
+
Style/Not:
|
418
|
+
Enabled: false
|
419
|
+
|
420
|
+
# Offense count: 6
|
421
|
+
# Cop supports --auto-correct.
|
422
|
+
Style/NumericLiterals:
|
423
|
+
Enabled: false
|
424
|
+
|
425
|
+
# Offense count: 4
|
426
|
+
# Cop supports --auto-correct.
|
427
|
+
# Configuration parameters: AllowSafeAssignment.
|
428
|
+
Style/ParenthesesAroundCondition:
|
429
|
+
Enabled: false
|
430
|
+
|
431
|
+
# Offense count: 488
|
432
|
+
# Cop supports --auto-correct.
|
433
|
+
# Configuration parameters: PreferredDelimiters.
|
434
|
+
Style/PercentLiteralDelimiters:
|
435
|
+
Enabled: false
|
436
|
+
|
437
|
+
# Offense count: 112
|
438
|
+
# Cop supports --auto-correct.
|
439
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
440
|
+
Style/PercentQLiterals:
|
441
|
+
Enabled: false
|
442
|
+
|
443
|
+
# Offense count: 30
|
444
|
+
# Cop supports --auto-correct.
|
445
|
+
Style/PerlBackrefs:
|
446
|
+
Enabled: false
|
447
|
+
|
448
|
+
# Offense count: 7
|
449
|
+
# Configuration parameters: NamePrefix, NamePrefixBlacklist.
|
450
|
+
Style/PredicateName:
|
451
|
+
Enabled: false
|
452
|
+
|
453
|
+
# Offense count: 5
|
454
|
+
# Cop supports --auto-correct.
|
455
|
+
Style/Proc:
|
456
|
+
Enabled: false
|
457
|
+
|
458
|
+
# Offense count: 7
|
459
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
460
|
+
Style/RaiseArgs:
|
461
|
+
Enabled: false
|
462
|
+
|
463
|
+
# Offense count: 7
|
464
|
+
# Cop supports --auto-correct.
|
465
|
+
Style/RedundantBegin:
|
466
|
+
Enabled: false
|
467
|
+
|
468
|
+
# Offense count: 9
|
469
|
+
Style/RedundantException:
|
470
|
+
Enabled: false
|
471
|
+
|
472
|
+
# Offense count: 9
|
473
|
+
# Cop supports --auto-correct.
|
474
|
+
# Configuration parameters: AllowMultipleReturnValues.
|
475
|
+
Style/RedundantReturn:
|
476
|
+
Enabled: false
|
477
|
+
|
478
|
+
# Offense count: 513
|
479
|
+
# Cop supports --auto-correct.
|
480
|
+
Style/RedundantSelf:
|
481
|
+
Enabled: false
|
482
|
+
|
483
|
+
# Offense count: 23
|
484
|
+
# Configuration parameters: MaxSlashes.
|
485
|
+
Style/RegexpLiteral:
|
486
|
+
Enabled: false
|
487
|
+
|
488
|
+
# Offense count: 3
|
489
|
+
Style/SelfAssignment:
|
490
|
+
Enabled: false
|
491
|
+
|
492
|
+
# Offense count: 21
|
493
|
+
# Cop supports --auto-correct.
|
494
|
+
# Configuration parameters: AllowAsExpressionSeparator.
|
495
|
+
Style/Semicolon:
|
496
|
+
Enabled: false
|
497
|
+
|
498
|
+
# Offense count: 292
|
499
|
+
# Cop supports --auto-correct.
|
500
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
501
|
+
Style/SignalException:
|
502
|
+
Enabled: false
|
503
|
+
|
504
|
+
# Offense count: 4
|
505
|
+
# Configuration parameters: Methods.
|
506
|
+
Style/SingleLineBlockParams:
|
507
|
+
Enabled: false
|
508
|
+
|
509
|
+
# Offense count: 11
|
510
|
+
# Cop supports --auto-correct.
|
511
|
+
# Configuration parameters: AllowIfMethodIsEmpty.
|
512
|
+
Style/SingleLineMethods:
|
513
|
+
Enabled: false
|
514
|
+
|
515
|
+
# Offense count: 224
|
516
|
+
# Cop supports --auto-correct.
|
517
|
+
Style/SpaceAfterComma:
|
518
|
+
Enabled: false
|
519
|
+
|
520
|
+
# Offense count: 48
|
521
|
+
# Cop supports --auto-correct.
|
522
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
523
|
+
Style/SpaceAroundEqualsInParameterDefault:
|
524
|
+
Enabled: false
|
525
|
+
|
526
|
+
# Offense count: 172
|
527
|
+
# Cop supports --auto-correct.
|
528
|
+
Style/SpaceAroundOperators:
|
529
|
+
Enabled: false
|
530
|
+
|
531
|
+
# Offense count: 72
|
532
|
+
# Cop supports --auto-correct.
|
533
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
534
|
+
Style/SpaceBeforeBlockBraces:
|
535
|
+
Enabled: false
|
536
|
+
|
537
|
+
# Offense count: 17
|
538
|
+
# Cop supports --auto-correct.
|
539
|
+
Style/SpaceBeforeComma:
|
540
|
+
Enabled: false
|
541
|
+
|
542
|
+
# Offense count: 2
|
543
|
+
# Cop supports --auto-correct.
|
544
|
+
Style/SpaceBeforeComment:
|
545
|
+
Enabled: false
|
546
|
+
|
547
|
+
# Offense count: 183
|
548
|
+
# Cop supports --auto-correct.
|
549
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
|
550
|
+
Style/SpaceInsideBlockBraces:
|
551
|
+
Enabled: false
|
552
|
+
|
553
|
+
# Offense count: 36
|
554
|
+
# Cop supports --auto-correct.
|
555
|
+
Style/SpaceInsideBrackets:
|
556
|
+
Enabled: false
|
557
|
+
|
558
|
+
# Offense count: 2991
|
559
|
+
# Cop supports --auto-correct.
|
560
|
+
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SupportedStyles.
|
561
|
+
Style/SpaceInsideHashLiteralBraces:
|
562
|
+
Enabled: false
|
563
|
+
|
564
|
+
# Offense count: 8
|
565
|
+
# Cop supports --auto-correct.
|
566
|
+
Style/SpaceInsideParens:
|
567
|
+
Enabled: false
|
568
|
+
|
569
|
+
# Offense count: 12
|
570
|
+
# Cop supports --auto-correct.
|
571
|
+
Style/SpecialGlobalVars:
|
572
|
+
Enabled: false
|
573
|
+
|
574
|
+
# Offense count: 22
|
575
|
+
# Cop supports --auto-correct.
|
576
|
+
# Configuration parameters: IgnoredMethods.
|
577
|
+
Style/SymbolProc:
|
578
|
+
Enabled: false
|
579
|
+
|
580
|
+
# Offense count: 13
|
581
|
+
# Cop supports --auto-correct.
|
582
|
+
Style/Tab:
|
583
|
+
Enabled: false
|
584
|
+
|
585
|
+
# Offense count: 1
|
586
|
+
# Cop supports --auto-correct.
|
587
|
+
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, Whitelist.
|
588
|
+
Style/TrivialAccessors:
|
589
|
+
Enabled: false
|
590
|
+
|
591
|
+
# Offense count: 4
|
592
|
+
Style/UnlessElse:
|
593
|
+
Enabled: false
|
594
|
+
|
595
|
+
# Offense count: 119
|
596
|
+
# Cop supports --auto-correct.
|
597
|
+
Style/UnneededPercentQ:
|
598
|
+
Enabled: false
|
599
|
+
|
600
|
+
# Offense count: 3
|
601
|
+
# Configuration parameters: MaxLineLength.
|
602
|
+
Style/WhileUntilModifier:
|
603
|
+
Enabled: false
|
604
|
+
|
605
|
+
# Offense count: 224
|
606
|
+
# Cop supports --auto-correct.
|
607
|
+
# Configuration parameters: WordRegex.
|
608
|
+
Style/WordArray:
|
609
|
+
MinSize: 12
|