forked from troessner/reek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_todo.yml
63 lines (53 loc) · 1.64 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-11-04 12:41:28 +0100 using RuboCop version 0.60.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: 3
Metrics/AbcSize:
Max: 21
# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 161
# Offense count: 13
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/MethodLength:
Max: 16
# Offense count: 2
RSpec/AnyInstance:
Exclude:
- 'spec/reek/cli/application_spec.rb'
# Offense count: 1
# Configuration parameters: CustomIncludeMethods.
RSpec/EmptyExampleGroup:
Exclude:
- 'spec/factories/factories.rb'
# Offense count: 1
RSpec/MissingExampleGroupArgument:
Exclude:
- 'spec/factories/factories.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: 32
# Configuration parameters: AggregateFailuresByDefault.
RSpec/MultipleExpectations:
Max: 5
# Offense count: 25
RSpec/NestedGroups:
Max: 5
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, Whitelist.
# Whitelist: present?, blank?, presence, try, try!
Style/SafeNavigation:
Exclude:
- 'lib/reek/ast/node.rb'
- 'lib/reek/ast/sexp_extensions/module.rb'