-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.rubocop.yml
35 lines (24 loc) · 858 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
AllCops:
TargetRubyVersion: 3.0
SuggestExtensions: false
NewCops: disable
# ------------------------------------------------------- Layout -------------------------------------------------------
Layout/EmptyLinesAroundBlockBody:
Enabled: false
Layout/EmptyLinesAroundClassBody:
Enabled: false
Layout/EmptyLinesAroundModuleBody:
Enabled: false
Layout/MultilineAssignmentLayout:
Enabled: false
Layout/LineLength:
Max: 120
# ------------------------------------------------------- Style --------------------------------------------------------
Style/ClassAndModuleChildren:
Enabled: false
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes
# ------------------------------------------------------- Metrics ------------------------------------------------------
Metrics/BlockLength:
Enabled: false