-
Notifications
You must be signed in to change notification settings - Fork 14
/
.rubocop_todo.yml
112 lines (96 loc) · 2.81 KB
/
.rubocop_todo.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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2021-07-10 18:10:30 UTC using RuboCop version 1.18.3.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 3
# Configuration parameters: IgnoredMethods.
Lint/AmbiguousBlockAssociation:
Exclude:
- 'lib/dump/reader.rb'
- 'spec/dump/table_manipulation_spec.rb'
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: AllowPercentLiteralArrayArgument.
Lint/RedundantSplatExpansion:
Exclude:
- 'lib/dump.rb'
# Offense count: 20
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 47
# Offense count: 11
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
# IgnoredMethods: refine
Metrics/BlockLength:
Max: 278
# Offense count: 3
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
Max: 226
# Offense count: 10
# Configuration parameters: IgnoredMethods.
Metrics/CyclomaticComplexity:
Max: 17
# Offense count: 29
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
Metrics/MethodLength:
Max: 55
# Offense count: 2
# Configuration parameters: CountComments, CountAsOne.
Metrics/ModuleLength:
Max: 130
# Offense count: 6
# Configuration parameters: IgnoredMethods.
Metrics/PerceivedComplexity:
Max: 18
# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle.
# SupportedStyles: lowercase, uppercase
Naming/HeredocDelimiterCase:
Exclude:
- 'spec/tasks/assets_spec.rb'
# Offense count: 6
Security/MarshalLoad:
Exclude:
- 'lib/dump/reader.rb'
- 'spec/cycle_spec.rb'
# Offense count: 1
# Cop supports --auto-correct.
Security/YAMLLoad:
Exclude:
- 'spec/cycle_spec.rb'
# Offense count: 3
# Cop supports --auto-correct.
Style/ExpandPathArguments:
Exclude:
- 'spec/cycle_spec.rb'
- 'spec/recipes/dump_spec.rb'
# Offense count: 6
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle.
# SupportedStyles: implicit, explicit
Style/RescueStandardError:
Exclude:
- 'lib/dump.rb'
- 'lib/dump/capistrano/v2.rb'
- 'lib/dump/reader.rb'
- 'lib/dump/writer.rb'
# Offense count: 9
# Cop supports --auto-correct.
Style/StderrPuts:
Exclude:
- 'lib/dump.rb'
- 'lib/dump/capistrano/v2.rb'
- 'lib/dump/reader.rb'
- 'lib/dump/writer.rb'
- 'spec/cycle_spec.rb'
# Offense count: 86
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
Max: 210