forked from the-cloudkeeper-project/cloudkeeper-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
48 lines (38 loc) · 785 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
require: rubocop-rspec
Metrics/BlockLength:
Exclude:
- 'Rakefile'
- '**/*.rake'
- 'spec/**/*.rb'
- '*.gemspec'
Metrics/ModuleLength:
Exclude:
- 'spec/**/*.rb'
Metrics/LineLength:
Max: 135
Metrics/ClassLength:
Max: 120
Exclude:
- 'lib/cloudkeeper/aws/cli.rb'
RSpec/InstanceVariable:
Exclude:
- 'spec/**/*.rb'
Metrics/ParameterLists:
Exclude:
- 'spec/mock_helper.rb'
Metrics/MethodLength:
Max: 15
Exclude:
- 'spec/mock_helper.rb'
- 'lib/cloudkeeper/aws/proto_helper.rb'
Metrics/AbcSize:
Max: 20
Exclude:
- 'lib/cloudkeeper/aws/proto_helper.rb'
Naming/UncommunicativeMethodParamName:
Exclude:
- 'spec/mock_helper.rb'
AllCops:
Exclude:
- 'lib/cloudkeeper_grpc/**/*.rb'
- 'lib/cloudkeeper_grpc.rb'