-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.rubocop.yml
More file actions
51 lines (36 loc) · 751 Bytes
/
Copy path.rubocop.yml
File metadata and controls
51 lines (36 loc) · 751 Bytes
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
AllCops:
TargetRubyVersion: 2.3
Metrics/LineLength:
Max: 100
Metrics/AbcSize:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Style/Documentation:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/SignalException:
EnforcedStyle: only_raise
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: comma
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Max: 100
Metrics/ClassLength:
Max: 300
Metrics/ModuleLength:
Max: 300
Performance/RedundantBlockCall:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%i': '()'
'%I': '()'
'%w': '()'
'%W': '()'