puppet-lint 3.0.1 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +28 -6
  3. data/lib/puppet-lint/bin.rb +9 -8
  4. data/lib/puppet-lint/checkplugin.rb +4 -8
  5. data/lib/puppet-lint/checks.rb +8 -10
  6. data/lib/puppet-lint/configuration.rb +2 -1
  7. data/lib/puppet-lint/data.rb +48 -39
  8. data/lib/puppet-lint/lexer/string_slurper.rb +2 -3
  9. data/lib/puppet-lint/lexer/token.rb +6 -5
  10. data/lib/puppet-lint/lexer.rb +35 -38
  11. data/lib/puppet-lint/monkeypatches.rb +4 -4
  12. data/lib/puppet-lint/optparser.rb +5 -1
  13. data/lib/puppet-lint/plugins/check_classes/arrow_on_right_operand_line.rb +1 -0
  14. data/lib/puppet-lint/plugins/check_classes/autoloader_layout.rb +2 -4
  15. data/lib/puppet-lint/plugins/check_classes/class_inherits_from_params_class.rb +2 -2
  16. data/lib/puppet-lint/plugins/check_classes/code_on_top_scope.rb +1 -1
  17. data/lib/puppet-lint/plugins/check_classes/nested_classes_or_defines.rb +5 -5
  18. data/lib/puppet-lint/plugins/check_classes/parameter_order.rb +8 -9
  19. data/lib/puppet-lint/plugins/check_classes/variable_scope.rb +32 -34
  20. data/lib/puppet-lint/plugins/check_conditionals/case_without_default.rb +2 -2
  21. data/lib/puppet-lint/plugins/check_documentation/documentation.rb +7 -6
  22. data/lib/puppet-lint/plugins/check_nodes/unquoted_node_name.rb +1 -1
  23. data/lib/puppet-lint/plugins/check_resources/ensure_first_param.rb +3 -5
  24. data/lib/puppet-lint/plugins/check_resources/ensure_not_symlink_target.rb +2 -2
  25. data/lib/puppet-lint/plugins/check_resources/file_mode.rb +6 -6
  26. data/lib/puppet-lint/plugins/check_resources/unquoted_file_mode.rb +4 -4
  27. data/lib/puppet-lint/plugins/check_strings/double_quoted_strings.rb +4 -4
  28. data/lib/puppet-lint/plugins/check_strings/only_variable_string.rb +4 -5
  29. data/lib/puppet-lint/plugins/check_strings/quoted_booleans.rb +4 -4
  30. data/lib/puppet-lint/plugins/check_strings/single_quote_string_with_variables.rb +2 -2
  31. data/lib/puppet-lint/plugins/check_strings/variables_not_enclosed.rb +8 -7
  32. data/lib/puppet-lint/plugins/check_variables/variable_contains_dash.rb +3 -3
  33. data/lib/puppet-lint/plugins/check_variables/variable_is_lowercase.rb +2 -2
  34. data/lib/puppet-lint/plugins/check_whitespace/140chars.rb +1 -0
  35. data/lib/puppet-lint/plugins/check_whitespace/80chars.rb +2 -1
  36. data/lib/puppet-lint/plugins/check_whitespace/arrow_alignment.rb +9 -9
  37. data/lib/puppet-lint/plugins/check_whitespace/hard_tabs.rb +2 -2
  38. data/lib/puppet-lint/plugins/check_whitespace/line_length.rb +6 -6
  39. data/lib/puppet-lint/plugins/check_whitespace/trailing_whitespace.rb +1 -1
  40. data/lib/puppet-lint/plugins/legacy_facts/legacy_facts.rb +196 -0
  41. data/lib/puppet-lint/plugins/top_scope_facts/top_scope_facts.rb +39 -0
  42. data/lib/puppet-lint/plugins.rb +3 -4
  43. data/lib/puppet-lint/report/codeclimate.rb +49 -0
  44. data/lib/puppet-lint/report/github.rb +1 -0
  45. data/lib/puppet-lint/tasks/puppet-lint.rb +12 -24
  46. data/lib/puppet-lint/tasks/release_test.rb +4 -4
  47. data/lib/puppet-lint/version.rb +1 -1
  48. data/lib/puppet-lint.rb +16 -10
  49. data/rubocop_baseline.yml +83 -0
  50. data/spec/fixtures/test/reports/code_climate.json +38 -0
  51. data/spec/spec_helper.rb +3 -2
  52. data/spec/spec_helper_acceptance_local.rb +1 -1
  53. data/spec/unit/puppet-lint/bin_spec.rb +38 -4
  54. data/spec/unit/puppet-lint/configuration_spec.rb +23 -13
  55. data/spec/unit/puppet-lint/data_spec.rb +36 -0
  56. data/spec/unit/puppet-lint/lexer/string_slurper_spec.rb +3 -5
  57. data/spec/unit/puppet-lint/lexer_spec.rb +10 -11
  58. data/spec/unit/puppet-lint/plugins/check_classes/parameter_order_spec.rb +2 -2
  59. data/spec/unit/puppet-lint/plugins/check_conditionals/case_without_default_spec.rb +5 -5
  60. data/spec/unit/puppet-lint/plugins/check_strings/double_quoted_strings_spec.rb +1 -1
  61. data/spec/unit/puppet-lint/plugins/check_strings/only_variable_string_spec.rb +1 -1
  62. data/spec/unit/puppet-lint/plugins/check_whitespace/140chars_spec.rb +0 -2
  63. data/spec/unit/puppet-lint/plugins/check_whitespace/80chars_spec.rb +1 -3
  64. data/spec/unit/puppet-lint/plugins/check_whitespace/trailing_whitespace_spec.rb +12 -0
  65. data/spec/unit/puppet-lint/plugins/legacy_facts/legacy_facts_spec.rb +463 -0
  66. data/spec/unit/puppet-lint/plugins/top_scope_facts/top_scope_facts_spec.rb +195 -0
  67. metadata +10 -4
  68. data/.rubocop.yml +0 -522
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppet-lint
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Sharpe
@@ -10,10 +10,10 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-10-20 00:00:00.000000000 Z
13
+ date: 2023-04-21 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: " Checks your Puppet manifests against the Puppetlabs style guide
16
- and alerts you to any discrepancies.'\n"
16
+ and alerts you to any discrepancies.\n"
17
17
  email:
18
18
  - tim@sharpe.id.au
19
19
  - modules-team@puppet.com
@@ -22,7 +22,6 @@ executables:
22
22
  extensions: []
23
23
  extra_rdoc_files: []
24
24
  files:
25
- - ".rubocop.yml"
26
25
  - LICENSE
27
26
  - README.md
28
27
  - bin/puppet-lint
@@ -76,12 +75,16 @@ files:
76
75
  - lib/puppet-lint/plugins/check_whitespace/hard_tabs.rb
77
76
  - lib/puppet-lint/plugins/check_whitespace/line_length.rb
78
77
  - lib/puppet-lint/plugins/check_whitespace/trailing_whitespace.rb
78
+ - lib/puppet-lint/plugins/legacy_facts/legacy_facts.rb
79
+ - lib/puppet-lint/plugins/top_scope_facts/top_scope_facts.rb
80
+ - lib/puppet-lint/report/codeclimate.rb
79
81
  - lib/puppet-lint/report/github.rb
80
82
  - lib/puppet-lint/report/sarif_template.json
81
83
  - lib/puppet-lint/tasks/gemfile_rewrite.rb
82
84
  - lib/puppet-lint/tasks/puppet-lint.rb
83
85
  - lib/puppet-lint/tasks/release_test.rb
84
86
  - lib/puppet-lint/version.rb
87
+ - rubocop_baseline.yml
85
88
  - spec/acceptance/puppet_lint_spec.rb
86
89
  - spec/fixtures/test/manifests/fail.pp
87
90
  - spec/fixtures/test/manifests/ignore.pp
@@ -95,6 +98,7 @@ files:
95
98
  - spec/fixtures/test/manifests/unterminated_control_comment.pp
96
99
  - spec/fixtures/test/manifests/url_interpolation.pp
97
100
  - spec/fixtures/test/manifests/warning.pp
101
+ - spec/fixtures/test/reports/code_climate.json
98
102
  - spec/spec_helper.rb
99
103
  - spec/spec_helper_acceptance.rb
100
104
  - spec/spec_helper_acceptance_local.rb
@@ -143,6 +147,8 @@ files:
143
147
  - spec/unit/puppet-lint/plugins/check_whitespace/arrow_alignment_spec.rb
144
148
  - spec/unit/puppet-lint/plugins/check_whitespace/hard_tabs_spec.rb
145
149
  - spec/unit/puppet-lint/plugins/check_whitespace/trailing_whitespace_spec.rb
150
+ - spec/unit/puppet-lint/plugins/legacy_facts/legacy_facts_spec.rb
151
+ - spec/unit/puppet-lint/plugins/top_scope_facts/top_scope_facts_spec.rb
146
152
  - spec/unit/puppet-lint/puppet-lint_spec.rb
147
153
  homepage: https://github.com/puppetlabs/puppet-lint/
148
154
  licenses:
data/.rubocop.yml DELETED
@@ -1,522 +0,0 @@
1
- ---
2
- require:
3
- - rubocop-performance
4
- - rubocop-rspec
5
- AllCops:
6
- DisplayCopNames: true
7
- TargetRubyVersion: '2.6'
8
- SuggestExtensions: false
9
- Include:
10
- - "**/*.rb"
11
- Exclude:
12
- - bin/*
13
- - ".vendor/**/*"
14
- - "**/Gemfile"
15
- - "**/Rakefile"
16
- - pkg/**/*
17
- - spec/fixtures/**/*
18
- - vendor/**/*
19
- - "**/Puppetfile"
20
- - "**/Vagrantfile"
21
- - "**/Guardfile"
22
- Layout/LineLength:
23
- Description: People have wide screens, use them.
24
- Max: 200
25
- RSpec/BeforeAfterAll:
26
- Description: Beware of using after(:all) as it may cause state to leak between tests.
27
- A necessary evil in acceptance testing.
28
- Exclude:
29
- - spec/acceptance/**/*.rb
30
- RSpec/HookArgument:
31
- Description: Prefer explicit :each argument, matching existing module's style
32
- EnforcedStyle: each
33
- RSpec/DescribeSymbol:
34
- Exclude:
35
- - spec/unit/facter/**/*.rb
36
- Style/BlockDelimiters:
37
- Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
38
- be consistent then.
39
- EnforcedStyle: braces_for_chaining
40
- Style/ClassAndModuleChildren:
41
- Description: Compact style reduces the required amount of indentation.
42
- EnforcedStyle: compact
43
- Style/EmptyElse:
44
- Description: Enforce against empty else clauses, but allow `nil` for clarity.
45
- EnforcedStyle: empty
46
- Style/FormatString:
47
- Description: Following the main puppet project's style, prefer the % format format.
48
- EnforcedStyle: percent
49
- Style/FormatStringToken:
50
- Description: Following the main puppet project's style, prefer the simpler template
51
- tokens over annotated ones.
52
- EnforcedStyle: template
53
- Style/Lambda:
54
- Description: Prefer the keyword for easier discoverability.
55
- EnforcedStyle: literal
56
- Style/RegexpLiteral:
57
- Description: Community preference. See https://github.com/voxpupuli/modulesync_config/issues/168
58
- EnforcedStyle: percent_r
59
- Style/TernaryParentheses:
60
- Description: Checks for use of parentheses around ternary conditions. Enforce parentheses
61
- on complex expressions for better readability, but seriously consider breaking
62
- it up.
63
- EnforcedStyle: require_parentheses_when_complex
64
- Style/TrailingCommaInArguments:
65
- Description: Prefer always trailing comma on multiline argument lists. This makes
66
- diffs, and re-ordering nicer.
67
- EnforcedStyleForMultiline: comma
68
- Style/TrailingCommaInArrayLiteral:
69
- Description: Prefer always trailing comma on multiline literals. This makes diffs,
70
- and re-ordering nicer.
71
- EnforcedStyleForMultiline: comma
72
- Style/SymbolArray:
73
- Description: Using percent style obscures symbolic intent of array's contents.
74
- EnforcedStyle: brackets
75
- RSpec/MessageSpies:
76
- EnforcedStyle: receive
77
- Style/Documentation:
78
- Exclude:
79
- - lib/puppet/parser/functions/**/*
80
- - spec/**/*
81
- Style/WordArray:
82
- EnforcedStyle: brackets
83
- Performance/AncestorsInclude:
84
- Enabled: true
85
- Performance/BigDecimalWithNumericArgument:
86
- Enabled: true
87
- Performance/BlockGivenWithExplicitBlock:
88
- Enabled: true
89
- Performance/CaseWhenSplat:
90
- Enabled: true
91
- Performance/ConstantRegexp:
92
- Enabled: true
93
- Performance/MethodObjectAsBlock:
94
- Enabled: true
95
- Performance/RedundantSortBlock:
96
- Enabled: true
97
- Performance/RedundantStringChars:
98
- Enabled: true
99
- Performance/ReverseFirst:
100
- Enabled: true
101
- Performance/SortReverse:
102
- Enabled: true
103
- Performance/Squeeze:
104
- Enabled: true
105
- Performance/StringInclude:
106
- Enabled: true
107
- Performance/Sum:
108
- Enabled: true
109
- Style/CollectionMethods:
110
- Enabled: true
111
- Style/MethodCalledOnDoEndBlock:
112
- Enabled: true
113
- Style/StringMethods:
114
- Enabled: true
115
- Bundler/InsecureProtocolSource:
116
- Enabled: false
117
- Gemspec/DuplicatedAssignment:
118
- Enabled: false
119
- Gemspec/OrderedDependencies:
120
- Enabled: false
121
- Gemspec/RequiredRubyVersion:
122
- Enabled: false
123
- Gemspec/RubyVersionGlobalsUsage:
124
- Enabled: false
125
- Layout/ArgumentAlignment:
126
- Enabled: false
127
- Layout/BeginEndAlignment:
128
- Enabled: false
129
- Layout/ClosingHeredocIndentation:
130
- Enabled: false
131
- Layout/EmptyComment:
132
- Enabled: false
133
- Layout/EmptyLineAfterGuardClause:
134
- Enabled: false
135
- Layout/EmptyLinesAroundArguments:
136
- Enabled: false
137
- Layout/EmptyLinesAroundAttributeAccessor:
138
- Enabled: false
139
- Layout/EndOfLine:
140
- Enabled: false
141
- Layout/FirstArgumentIndentation:
142
- Enabled: false
143
- Layout/HashAlignment:
144
- Enabled: false
145
- Layout/HeredocIndentation:
146
- Enabled: false
147
- Layout/LeadingEmptyLines:
148
- Enabled: false
149
- Layout/SpaceAroundMethodCallOperator:
150
- Enabled: false
151
- Layout/SpaceInsideArrayLiteralBrackets:
152
- Enabled: false
153
- Layout/SpaceInsideReferenceBrackets:
154
- Enabled: false
155
- Lint/BigDecimalNew:
156
- Enabled: false
157
- Lint/BooleanSymbol:
158
- Enabled: false
159
- Lint/ConstantDefinitionInBlock:
160
- Enabled: false
161
- Lint/DeprecatedOpenSSLConstant:
162
- Enabled: false
163
- Lint/DisjunctiveAssignmentInConstructor:
164
- Enabled: false
165
- Lint/DuplicateElsifCondition:
166
- Enabled: false
167
- Lint/DuplicateRequire:
168
- Enabled: false
169
- Lint/DuplicateRescueException:
170
- Enabled: false
171
- Lint/EmptyConditionalBody:
172
- Enabled: false
173
- Lint/EmptyFile:
174
- Enabled: false
175
- Lint/ErbNewArguments:
176
- Enabled: false
177
- Lint/FloatComparison:
178
- Enabled: false
179
- Lint/HashCompareByIdentity:
180
- Enabled: false
181
- Lint/IdentityComparison:
182
- Enabled: false
183
- Lint/InterpolationCheck:
184
- Enabled: false
185
- Lint/MissingCopEnableDirective:
186
- Enabled: false
187
- Lint/MixedRegexpCaptureTypes:
188
- Enabled: false
189
- Lint/NestedPercentLiteral:
190
- Enabled: false
191
- Lint/NonDeterministicRequireOrder:
192
- Enabled: false
193
- Lint/OrderedMagicComments:
194
- Enabled: false
195
- Lint/OutOfRangeRegexpRef:
196
- Enabled: false
197
- Lint/RaiseException:
198
- Enabled: false
199
- Lint/RedundantCopEnableDirective:
200
- Enabled: false
201
- Lint/RedundantRequireStatement:
202
- Enabled: false
203
- Lint/RedundantSafeNavigation:
204
- Enabled: false
205
- Lint/RedundantWithIndex:
206
- Enabled: false
207
- Lint/RedundantWithObject:
208
- Enabled: false
209
- Lint/RegexpAsCondition:
210
- Enabled: false
211
- Lint/ReturnInVoidContext:
212
- Enabled: false
213
- Lint/SafeNavigationConsistency:
214
- Enabled: false
215
- Lint/SafeNavigationWithEmpty:
216
- Enabled: false
217
- Lint/SelfAssignment:
218
- Enabled: false
219
- Lint/SendWithMixinArgument:
220
- Enabled: false
221
- Lint/ShadowedArgument:
222
- Enabled: false
223
- Lint/StructNewOverride:
224
- Enabled: false
225
- Lint/ToJSON:
226
- Enabled: false
227
- Lint/TopLevelReturnWithArgument:
228
- Enabled: false
229
- Lint/TrailingCommaInAttributeDeclaration:
230
- Enabled: false
231
- Lint/UnreachableLoop:
232
- Enabled: false
233
- Lint/UriEscapeUnescape:
234
- Enabled: false
235
- Lint/UriRegexp:
236
- Enabled: false
237
- Lint/UselessMethodDefinition:
238
- Enabled: false
239
- Lint/UselessTimes:
240
- Enabled: false
241
- Metrics/AbcSize:
242
- Enabled: false
243
- Metrics/BlockLength:
244
- Enabled: false
245
- Metrics/BlockNesting:
246
- Enabled: false
247
- Metrics/ClassLength:
248
- Enabled: false
249
- Metrics/CyclomaticComplexity:
250
- Enabled: false
251
- Metrics/MethodLength:
252
- Enabled: false
253
- Metrics/ModuleLength:
254
- Enabled: false
255
- Metrics/ParameterLists:
256
- Enabled: false
257
- Metrics/PerceivedComplexity:
258
- Enabled: false
259
- Migration/DepartmentName:
260
- Enabled: false
261
- Naming/AccessorMethodName:
262
- Enabled: false
263
- Naming/BlockParameterName:
264
- Enabled: false
265
- Naming/HeredocDelimiterCase:
266
- Enabled: false
267
- Naming/HeredocDelimiterNaming:
268
- Enabled: false
269
- Naming/MemoizedInstanceVariableName:
270
- Enabled: false
271
- Naming/MethodParameterName:
272
- Enabled: false
273
- Naming/RescuedExceptionsVariableName:
274
- Enabled: false
275
- Naming/VariableNumber:
276
- Enabled: false
277
- Performance/BindCall:
278
- Enabled: false
279
- Performance/DeletePrefix:
280
- Enabled: false
281
- Performance/DeleteSuffix:
282
- Enabled: false
283
- Performance/InefficientHashSearch:
284
- Enabled: false
285
- Performance/UnfreezeString:
286
- Enabled: false
287
- Performance/UriDefaultParser:
288
- Enabled: false
289
- RSpec/Be:
290
- Enabled: false
291
- RSpec/Capybara/CurrentPathExpectation:
292
- Enabled: false
293
- RSpec/Capybara/FeatureMethods:
294
- Enabled: false
295
- RSpec/Capybara/VisibilityMatcher:
296
- Enabled: false
297
- RSpec/ContextMethod:
298
- Enabled: false
299
- RSpec/ContextWording:
300
- Enabled: false
301
- RSpec/DescribeClass:
302
- Enabled: false
303
- RSpec/EmptyHook:
304
- Enabled: false
305
- RSpec/EmptyLineAfterExample:
306
- Enabled: false
307
- RSpec/EmptyLineAfterExampleGroup:
308
- Enabled: false
309
- RSpec/EmptyLineAfterHook:
310
- Enabled: false
311
- RSpec/ExampleLength:
312
- Enabled: false
313
- RSpec/ExampleWithoutDescription:
314
- Enabled: false
315
- RSpec/ExpectChange:
316
- Enabled: false
317
- RSpec/ExpectInHook:
318
- Enabled: false
319
- RSpec/FactoryBot/AttributeDefinedStatically:
320
- Enabled: false
321
- RSpec/FactoryBot/CreateList:
322
- Enabled: false
323
- RSpec/FactoryBot/FactoryClassName:
324
- Enabled: false
325
- RSpec/HooksBeforeExamples:
326
- Enabled: false
327
- RSpec/ImplicitBlockExpectation:
328
- Enabled: false
329
- RSpec/ImplicitSubject:
330
- Enabled: false
331
- RSpec/LeakyConstantDeclaration:
332
- Enabled: false
333
- RSpec/LetBeforeExamples:
334
- Enabled: false
335
- RSpec/MissingExampleGroupArgument:
336
- Enabled: false
337
- RSpec/MultipleExpectations:
338
- Enabled: false
339
- RSpec/MultipleMemoizedHelpers:
340
- Enabled: false
341
- RSpec/MultipleSubjects:
342
- Enabled: false
343
- RSpec/NestedGroups:
344
- Enabled: false
345
- RSpec/PredicateMatcher:
346
- Enabled: false
347
- RSpec/ReceiveCounts:
348
- Enabled: false
349
- RSpec/ReceiveNever:
350
- Enabled: false
351
- RSpec/RepeatedExampleGroupBody:
352
- Enabled: false
353
- RSpec/RepeatedExampleGroupDescription:
354
- Enabled: false
355
- RSpec/RepeatedIncludeExample:
356
- Enabled: false
357
- RSpec/ReturnFromStub:
358
- Enabled: false
359
- RSpec/SharedExamples:
360
- Enabled: false
361
- RSpec/StubbedMock:
362
- Enabled: false
363
- RSpec/UnspecifiedException:
364
- Enabled: false
365
- RSpec/VariableDefinition:
366
- Enabled: false
367
- RSpec/VoidExpect:
368
- Enabled: false
369
- RSpec/Yield:
370
- Enabled: false
371
- Security/Open:
372
- Enabled: false
373
- Style/AccessModifierDeclarations:
374
- Enabled: false
375
- Style/AccessorGrouping:
376
- Enabled: false
377
- Style/AsciiComments:
378
- Enabled: false
379
- Style/BisectedAttrAccessor:
380
- Enabled: false
381
- Style/CaseLikeIf:
382
- Enabled: false
383
- Style/ClassEqualityComparison:
384
- Enabled: false
385
- Style/ColonMethodDefinition:
386
- Enabled: false
387
- Style/CombinableLoops:
388
- Enabled: false
389
- Style/CommentedKeyword:
390
- Enabled: false
391
- Style/Dir:
392
- Enabled: false
393
- Style/DoubleCopDisableDirective:
394
- Enabled: false
395
- Style/EmptyBlockParameter:
396
- Enabled: false
397
- Style/EmptyLambdaParameter:
398
- Enabled: false
399
- Style/Encoding:
400
- Enabled: false
401
- Style/EvalWithLocation:
402
- Enabled: false
403
- Style/ExpandPathArguments:
404
- Enabled: false
405
- Style/ExplicitBlockArgument:
406
- Enabled: false
407
- Style/ExponentialNotation:
408
- Enabled: false
409
- Style/FloatDivision:
410
- Enabled: false
411
- Style/FrozenStringLiteralComment:
412
- Enabled: false
413
- Style/GlobalStdStream:
414
- Enabled: false
415
- Style/HashAsLastArrayItem:
416
- Enabled: false
417
- Style/HashLikeCase:
418
- Enabled: false
419
- Style/HashTransformKeys:
420
- Enabled: false
421
- Style/HashTransformValues:
422
- Enabled: false
423
- Style/IfUnlessModifier:
424
- Enabled: false
425
- Style/KeywordParametersOrder:
426
- Enabled: false
427
- Style/MinMax:
428
- Enabled: false
429
- Style/MixinUsage:
430
- Enabled: false
431
- Style/MultilineWhenThen:
432
- Enabled: false
433
- Style/NegatedUnless:
434
- Enabled: false
435
- Style/NumericPredicate:
436
- Enabled: false
437
- Style/OptionalBooleanParameter:
438
- Enabled: false
439
- Style/OrAssignment:
440
- Enabled: false
441
- Style/RandomWithOffset:
442
- Enabled: false
443
- Style/RedundantAssignment:
444
- Enabled: false
445
- Style/RedundantCondition:
446
- Enabled: false
447
- Style/RedundantConditional:
448
- Enabled: false
449
- Style/RedundantFetchBlock:
450
- Enabled: false
451
- Style/RedundantFileExtensionInRequire:
452
- Enabled: false
453
- Style/RedundantRegexpCharacterClass:
454
- Enabled: false
455
- Style/RedundantRegexpEscape:
456
- Enabled: false
457
- Style/RedundantSelfAssignment:
458
- Enabled: false
459
- Style/RedundantSort:
460
- Enabled: false
461
- Style/RescueStandardError:
462
- Enabled: false
463
- Style/SingleArgumentDig:
464
- Enabled: false
465
- Style/SlicingWithRange:
466
- Enabled: false
467
- Style/SoleNestedConditional:
468
- Enabled: false
469
- Style/StderrPuts:
470
- Enabled: false
471
- Style/StringConcatenation:
472
- Enabled: false
473
- Style/Strip:
474
- Enabled: false
475
- Style/SymbolProc:
476
- Enabled: false
477
- Style/TrailingBodyOnClass:
478
- Enabled: false
479
- Style/TrailingBodyOnMethodDefinition:
480
- Enabled: false
481
- Style/TrailingBodyOnModule:
482
- Enabled: false
483
- Style/TrailingCommaInHashLiteral:
484
- Enabled: false
485
- Style/TrailingMethodEndStatement:
486
- Enabled: false
487
- Style/UnpackFirst:
488
- Enabled: false
489
- Lint/DuplicateBranch:
490
- Enabled: false
491
- Lint/DuplicateRegexpCharacterClassElement:
492
- Enabled: false
493
- Lint/EmptyBlock:
494
- Enabled: false
495
- Lint/EmptyClass:
496
- Enabled: false
497
- Lint/NoReturnInBeginEndBlocks:
498
- Enabled: false
499
- Lint/ToEnumArguments:
500
- Enabled: false
501
- Lint/UnexpectedBlockArity:
502
- Enabled: false
503
- Lint/UnmodifiedReduceAccumulator:
504
- Enabled: false
505
- Performance/CollectionLiteralInLoop:
506
- Enabled: false
507
- Style/ArgumentsForwarding:
508
- Enabled: false
509
- Style/CollectionCompact:
510
- Enabled: false
511
- Style/DocumentDynamicEvalDefinition:
512
- Enabled: false
513
- Style/NegatedIfElseCondition:
514
- Enabled: false
515
- Style/NilLambda:
516
- Enabled: false
517
- Style/RedundantArgument:
518
- Enabled: false
519
- Style/SwapValues:
520
- Enabled: false
521
- RSpec/FilePath:
522
- Enabled: false