forked from ActsAsParanoid/acts_as_paranoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop_todo.yml
103 lines (87 loc) · 2.42 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2020-01-31 19:02:16 +0100 using RuboCop version 0.79.0.
# 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: 1
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
Exclude:
- 'lib/acts_as_paranoid/core.rb'
# Offense count: 1
Lint/NestedMethodDefinition:
Exclude:
- 'lib/acts_as_paranoid.rb'
# Offense count: 1
Lint/UselessAssignment:
Exclude:
- 'test/test_associations.rb'
# Offense count: 33
Metrics/AbcSize:
Max: 128
# Offense count: 1
# Configuration parameters: CountComments, ExcludedMethods.
# ExcludedMethods: refine
Metrics/BlockLength:
Max: 157
# Offense count: 2
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 482
# Offense count: 2
Metrics/CyclomaticComplexity:
Max: 8
# Offense count: 26
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/MethodLength:
Max: 159
# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 147
# Offense count: 2
Metrics/PerceivedComplexity:
Max: 10
# Offense count: 9
# Configuration parameters: EnforcedStyle.
# SupportedStyles: snake_case, normalcase, non_integer
Naming/VariableNumber:
Exclude:
- 'test/test_associations.rb'
- 'test/test_core.rb'
- 'test/test_relations.rb'
# Offense count: 1
Security/Eval:
Exclude:
- 'Rakefile'
# Offense count: 9
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'lib/acts_as_paranoid.rb'
- 'lib/acts_as_paranoid/associations.rb'
- 'lib/acts_as_paranoid/core.rb'
- 'lib/acts_as_paranoid/relation.rb'
- 'lib/acts_as_paranoid/validations.rb'
# Offense count: 2
# Configuration parameters: MinBodyLength.
Style/GuardClause:
Exclude:
- 'lib/acts_as_paranoid.rb'
- 'lib/acts_as_paranoid/validations.rb'
# Offense count: 1
# Configuration parameters: AllowIfModifier.
Style/IfInsideElse:
Exclude:
- 'lib/acts_as_paranoid/core.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
# SupportedStyles: predicate, comparison
Style/NumericPredicate:
Exclude:
- 'spec/**/*'
- 'lib/acts_as_paranoid/associations.rb'