-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
63 lines (63 loc) · 2.28 KB
/
.rubocop.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
require:
- rubocop-rspec
inherit_mode:
merge:
- Exclude
AllCops:
NewCops: enable
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Style/Documentation:
Enabled: false
#-------------------------------------------------------------------------------
RSpec/ExampleLength:
Exclude:
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
- spec/unit/bods_mapping/ownership_or_control_statement_spec.rb
- spec/unit/bods_mapping/person_statement_spec.rb
RSpec/FilePath:
Exclude:
- spec/register_transformer_psc.rb
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
- spec/unit/bods_mapping/ownership_or_control_statement_spec.rb
- spec/unit/bods_mapping/person_statement_spec.rb
RSpec/MessageSpies:
Exclude:
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
RSpec/MultipleExpectations:
Exclude:
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
- spec/unit/bods_mapping/ownership_or_control_statement_spec.rb
- spec/unit/bods_mapping/person_statement_spec.rb
RSpec/NamedSubject:
Exclude:
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
- spec/unit/bods_mapping/ownership_or_control_statement_spec.rb
- spec/unit/bods_mapping/person_statement_spec.rb
RSpec/NestedGroups:
Exclude:
- spec/unit/bods_mapping/interest_parser_spec.rb
RSpec/StubbedMock:
Exclude:
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
RSpec/VerifiedDoubles:
Exclude:
- spec/unit/bods_mapping/child_entity_statement_spec.rb
- spec/unit/bods_mapping/entity_statement_spec.rb
- spec/unit/bods_mapping/interest_parser_spec.rb
- spec/unit/bods_mapping/ownership_or_control_statement_spec.rb