-
Notifications
You must be signed in to change notification settings - Fork 16
/
.rubocop.yml
48 lines (33 loc) · 929 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
################################## Layout #######################################
Layout/IndentHash:
EnforcedStyle: consistent
Layout/SpaceInLambdaLiteral:
EnforcedStyle: require_space
################################## Naming #######################################
Naming/FileName:
Exclude:
- 'lib/clevertap-ruby.rb'
################################## Style #######################################
Style/FormatString:
EnforcedStyle: format
Style/FrozenStringLiteralComment:
Enabled: false
Style/MultilineBlockChain:
Enabled: false
Style/EmptyCaseCondition:
Enabled: false
################################## Metrics #####################################
Metrics/AbcSize:
Max: 120
Metrics/BlockLength:
Enabled: false
Metrics/CyclomaticComplexity:
Max: 40
Metrics/LineLength:
Max: 140
Metrics/MethodLength:
Max: 70
Metrics/ModuleLength:
Max: 200
Metrics/PerceivedComplexity:
Max: 10