-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.rubocop.yml
42 lines (40 loc) · 924 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
require:
- rubocop-performance
inherit_gem:
rubocop-github:
- config/default.yml
AllCops:
NewCops: enable
Lint/AmbiguousBlockAssociation:
Exclude:
- "spec/**/*"
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/Documentation:
Enabled: false
Naming/MethodParameterName:
Enabled: false
Style/MultilineIfModifier:
Enabled: false
Performance/Detect:
Enabled: false
Layout/FirstArrayElementLineBreak:
Enabled: true
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
Layout/FirstHashElementLineBreak:
Enabled: true
Layout/FirstMethodArgumentLineBreak:
Enabled: true
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
EnforcedLastArgumentHashStyle: always_inspect
Layout/MultilineHashKeyLineBreaks:
Enabled: true
Layout/MultilineMethodArgumentLineBreaks:
Enabled: true