forked from curationexperts/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
48 lines (38 loc) · 911 Bytes
/
.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
inherit_gem:
bixby: bixby_default.yml
AllCops:
Exclude:
- 'db/**/*'
- 'script/**/*'
- 'vendor/**/*'
- 'tmp/**/*'
- '**/*.gemspec' # these would normally be inherited from bixby
- 'config/**/*'
- 'app/models/geo_server/coverage.rb'
Layout/MultilineMethodCallIndentation:
Exclude:
- 'spec/importers/importing_zips_spec.rb'
Naming/FileName:
Exclude:
- "**/Capfile"
- "**/Gemfile"
- "**/*.rake"
Metrics/BlockLength:
Enabled: false
Metrics/ClassLength:
Exclude:
- 'app/controllers/catalog_controller.rb'
- 'app/importers/iso_zip_mapper.rb'
Metrics/LineLength:
Exclude:
- 'app/importers/iso_zip_mapper.rb'
RSpec/DescribeClass:
Exclude:
- 'spec/importers/importing_zips_spec.rb'
RSpec/ExampleLength:
Enabled: false
RSpec/MessageSpies:
Enabled: false
RSpec/DescribeClass:
Exclude:
- 'spec/importers/importing_zips_spec.rb'