-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
58 lines (45 loc) · 890 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
49
50
51
52
53
54
55
56
57
58
require:
- rubocop-rspec
- rubocop-performance
- rubocop-rails
AllCops:
Exclude:
- 'spec/dummy/**/*'
- 'vendor/bundle/**/*'
TargetRubyVersion: 2.6
Bundler/DuplicatedGem:
Exclude:
- 'Gemfile'
Lint/HandleExceptions:
Exclude:
- 'Rakefile'
Metrics/AbcSize:
Exclude:
- 'spec/pages/**/*'
- 'spec/sections/**/*'
Metrics/BlockLength:
Exclude:
- '*.gemspec'
- 'spec/**/*'
- 'lib/solidus_billing_address/factories.rb'
Metrics/LineLength:
Max: 170
Metrics/MethodLength:
Exclude:
- 'spec/pages/**/*'
- 'spec/sections/**/*'
# Style/ClassAndModuleChildren:
# Exclude:
# - 'app/models/spree/payment_method/bank_transfer.rb'
Rails:
Enabled: true
RSpec/ExampleLength:
Max: 20
RSpec/MultipleExpectations:
Max: 2
Exclude:
- 'spec/features/**/*'
RSpec/NestedGroups:
Max: 4
Style/Documentation:
Enabled: false