-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy path.rubocop_todo.yml
70 lines (59 loc) · 1.88 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2021-01-03 18:17:11 UTC using RuboCop version 1.7.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: 2
Lint/MissingSuper:
Exclude:
- 'lib/reek/rake/task.rb'
- 'lib/reek/smell_detectors/base_detector.rb'
# Offense count: 2
# Configuration parameters: IgnoredPatterns.
# IgnoredPatterns: (?-mix:(exactly|at_least|at_most)\(\d+\)\.times)
Lint/UnreachableLoop:
Exclude:
- 'spec/reek/ast/node_spec.rb'
# Offense count: 2
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 21
# Offense count: 1
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
Max: 170
# Offense count: 13
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
Metrics/MethodLength:
Max: 16
# Offense count: 2
RSpec/AnyInstance:
Exclude:
- 'spec/reek/cli/application_spec.rb'
# Offense count: 4
RSpec/MultipleDescribes:
Exclude:
- 'spec/reek/ast/sexp_extensions_spec.rb'
- 'spec/reek/code_comment_spec.rb'
- 'spec/reek/report/location_formatter_spec.rb'
- 'spec/reek/report/progress_formatter_spec.rb'
# Offense count: 30
RSpec/MultipleExpectations:
Max: 5
# Offense count: 16
# Configuration parameters: AllowSubject.
RSpec/MultipleMemoizedHelpers:
Max: 9
# Offense count: 27
RSpec/NestedGroups:
Max: 5
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods.
# AllowedMethods: present?, blank?, presence, try, try!
Style/SafeNavigation:
Exclude:
- 'lib/reek/ast/node.rb'
- 'lib/reek/ast/sexp_extensions/module.rb'