-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.rubocop.yml
45 lines (36 loc) · 1004 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
AllCops:
TargetRubyVersion: 2.4
Documentation:
Enabled: false
Metrics/AbcSize:
Max: 25
Exclude:
- 'lib/vagrant-packet/config.rb'
- 'lib/vagrant-packet/action/run_instance.rb'
- 'lib/vagrant-packet/action/start_instance.rb'
Metrics/BlockLength:
Exclude:
- 'vagrant-packet.gemspec'
Metrics/ClassLength:
Exclude:
- 'lib/vagrant-packet/actions/run_instance.rb'
Metrics/CyclomaticComplexity:
Exclude:
- 'lib/vagrant-packet/config.rb'
- 'lib/vagrant-packet/action/run_instance.rb'
- 'lib/vagrant-packet/action/start_instance.rb'
Metrics/LineLength:
Max: 120
Metrics/MethodLength:
Max: 25
Exclude:
- 'lib/vagrant-packet/action/run_instance.rb'
- 'lib/vagrant-packet/action/start_instance.rb'
Metrics/ModuleLength:
Exclude:
- 'lib/vagrant-packet/action.rb'
Metrics/PerceivedComplexity:
Exclude:
- 'lib/vagrant-packet/config.rb'
- 'lib/vagrant-packet/action/run_instance.rb'
- 'lib/vagrant-packet/action/start_instance.rb'