-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
56 lines (38 loc) · 1010 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
Layout/ArrayAlignment:
EnforcedStyle: indented
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/MultilineArrayBraceLayout:
EnforcedStyle: same_line
Layout/MultilineHashBraceLayout:
EnforcedStyle: same_line
Layout/MultilineMethodCallBraceLayout:
EnforcedStyle: same_line
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Metrics/LineLength:
Max: 110
Metrics/MethodLength:
Enabled: false # it is always complaining when we use perfectly clear case statements
Naming/PredicateName:
Enabled: false
Style/Documentation:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/FrozenStringLiteralComment:
Enabled: false
Style/MixinUsage:
Enabled: false # there is a bug that makes it produce false hits
Style/MutableConstant:
Enabled: false
Style/RaiseArgs:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/SymbolArray:
MinSize: 3
Style/WordArray:
MinSize: 3