-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
56 lines (56 loc) · 1.59 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
require:
- rubocop-rspec
inherit_mode:
merge:
- Exclude
AllCops:
NewCops: enable
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
RSpec/FilePath:
Enabled: false
Style/Documentation:
Enabled: false
#-------------------------------------------------------------------------------
RSpec/ExampleLength:
Exclude:
- spec/integration/repository_spec.rb
- spec/unit/repository_spec.rb
- spec/unit/structs/adresa_spec.rb
- spec/unit/structs/konecni_uzivatelia_vyhod_spec.rb
- spec/unit/structs/partneri_verejneho_sektora_spec.rb
- spec/unit/structs/record_spec.rb
- spec/unit/structs/statna_prislusnost_spec.rb
RSpec/MessageSpies:
Exclude:
- spec/unit/repository_spec.rb
- spec/unit/services/es_index_creator_spec.rb
RSpec/MultipleExpectations:
Exclude:
- spec/integration/repository_spec.rb
- spec/unit/repository_spec.rb
- spec/unit/structs/adresa_spec.rb
- spec/unit/structs/konecni_uzivatelia_vyhod_spec.rb
- spec/unit/structs/partneri_verejneho_sektora_spec.rb
- spec/unit/structs/partner_spec.rb
- spec/unit/structs/record_spec.rb
- spec/unit/structs/statna_prislusnost_spec.rb
RSpec/NamedSubject:
Exclude:
- spec/integration/repository_spec.rb
- spec/unit/repository_spec.rb
- spec/unit/services/es_index_creator_spec.rb
RSpec/NestedGroups:
Exclude:
- spec/unit/repository_spec.rb
RSpec/StubbedMock:
Exclude:
- spec/unit/repository_spec.rb
RSpec/VerifiedDoubles:
Exclude:
- spec/unit/repository_spec.rb
- spec/unit/services/es_index_creator_spec.rb