-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
125 lines (125 loc) · 4.71 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
require:
- rubocop-rspec
inherit_mode:
merge:
- Exclude
AllCops:
NewCops: enable
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Style/Documentation:
Enabled: false
Style/MultilineBlockChain:
Enabled: false
RSpec/FilePath:
Enabled: false
#-------------------------------------------------------------------------------
RSpec/ExampleLength:
Exclude:
- spec/integration/repository_spec.rb
- spec/unit/register/entity_query_builder_spec.rb
- spec/unit/register/relationship_spec.rb
- spec/unit/services/migrator_lei_spec.rb
- spec/unit/services/pending_records_spec.rb
RSpec/MessageSpies:
Exclude:
- spec/unit/builders/entity_statement_spec.rb
- spec/unit/builders/ownership_or_control_statement_spec.rb
- spec/unit/builders/person_statement_spec.rb
- spec/unit/services/builder_spec.rb
- spec/unit/services/es_index_creator_spec.rb
- spec/unit/services/id_generator_spec.rb
- spec/unit/services/migrator_lei_spec.rb
- spec/unit/services/publisher_spec.rb
RSpec/MultipleExpectations:
Exclude:
- spec/integration/repository_spec.rb
- spec/unit/builders/entity_statement_spec.rb
- spec/unit/builders/ownership_or_control_statement_spec.rb
- spec/unit/builders/person_statement_spec.rb
- spec/unit/constants/publisher_spec.rb
- spec/unit/record_serializer_spec.rb
- spec/unit/services/migrator_lei_spec.rb
RSpec/MultipleMemoizedHelpers:
Exclude:
- spec/integration/repository_spec.rb
- spec/integration/transform_bulk_spec.rb
- spec/unit/services/builder_spec.rb
- spec/unit/services/migrator_lei_spec.rb
- spec/unit/services/publisher_spec.rb
RSpec/NamedSubject:
Exclude:
- spec/integration/repository_spec.rb
- spec/unit/builders/entity_statement_spec.rb
- spec/unit/builders/ownership_or_control_statement_spec.rb
- spec/unit/builders/person_statement_spec.rb
- spec/unit/enums/address_types_spec.rb
- spec/unit/enums/annotation_motivations_spec.rb
- spec/unit/enums/entity_types_spec.rb
- spec/unit/enums/interest_levels_spec.rb
- spec/unit/enums/interest_types_spec.rb
- spec/unit/enums/name_types_spec.rb
- spec/unit/enums/person_types_spec.rb
- spec/unit/enums/source_types_spec.rb
- spec/unit/enums/statement_types_spec.rb
- spec/unit/enums/unspecified_reasons_spec.rb
- spec/unit/id_generators/entity_statement_spec.rb
- spec/unit/id_generators/ownership_or_control_statement_spec.rb
- spec/unit/id_generators/person_statement_spec.rb
- spec/unit/record_serializer_spec.rb
- spec/unit/register/entity_query_builder_spec.rb
- spec/unit/register/entity_spec.rb
- spec/unit/register/provenance_spec.rb
- spec/unit/register/relationship_spec.rb
- spec/unit/services/builder_spec.rb
- spec/unit/services/es_index_creator_spec.rb
- spec/unit/services/id_generator_spec.rb
- spec/unit/services/migrator_lei_spec.rb
- spec/unit/services/pending_records_spec.rb
- spec/unit/services/publisher_spec.rb
- spec/unit/structs/address_spec.rb
- spec/unit/structs/agent_spec.rb
- spec/unit/structs/annotation_spec.rb
- spec/unit/structs/bods_statement_spec.rb
- spec/unit/structs/country_spec.rb
- spec/unit/structs/entity_statement_spec.rb
- spec/unit/structs/identifier_spec.rb
- spec/unit/structs/id_spec.rb
- spec/unit/structs/interested_party_spec.rb
- spec/unit/structs/interest_spec.rb
- spec/unit/structs/jurisdiction_spec.rb
- spec/unit/structs/name_spec.rb
- spec/unit/structs/ownership_or_control_statement_spec.rb
- spec/unit/structs/pep_status_details_spec.rb
- spec/unit/structs/person_statement_spec.rb
- spec/unit/structs/publication_details_spec.rb
- spec/unit/structs/publisher_spec.rb
- spec/unit/structs/replaces_statements_spec.rb
- spec/unit/structs/share_spec.rb
- spec/unit/structs/source_spec.rb
- spec/unit/structs/statement_date_spec.rb
- spec/unit/structs/subject_spec.rb
RSpec/StubbedMock:
Exclude:
- spec/unit/builders/entity_statement_spec.rb
- spec/unit/builders/ownership_or_control_statement_spec.rb
- spec/unit/builders/person_statement_spec.rb
- spec/unit/services/publisher_spec.rb
RSpec/VerifiedDoubles:
Exclude:
- spec/unit/builders/entity_statement_spec.rb
- spec/unit/builders/ownership_or_control_statement_spec.rb
- spec/unit/builders/person_statement_spec.rb
- spec/unit/register/entity_query_builder_spec.rb
- spec/unit/services/builder_spec.rb
- spec/unit/services/es_index_creator_spec.rb
- spec/unit/services/id_generator_spec.rb
- spec/unit/services/publisher_spec.rb