-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
48 lines (34 loc) · 713 Bytes
/
Copy path.rubocop.yml
File metadata and controls
48 lines (34 loc) · 713 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
plugins:
- rubocop-minitest
- rubocop-rake
AllCops:
TargetRubyVersion: 2.6
NewCops: enable
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes
Style/HashLikeCase:
Enabled: false
Style/FormatStringToken:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/RedundantCondition:
Enabled: false
Layout/LineLength:
Max: 240
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/AbcSize:
Max: 30
Naming/MethodParameterName:
Enabled: false
Minitest/MultipleAssertions:
Enabled: false