-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.rubocop.yml
More file actions
59 lines (44 loc) · 871 Bytes
/
.rubocop.yml
File metadata and controls
59 lines (44 loc) · 871 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
52
53
54
55
56
57
58
59
AllCops:
TargetRubyVersion: 3.2
NewCops: enable
SuggestExtensions: false
Exclude:
- "tmp/**/*"
- "vendor/**/*"
- "pkg/**/*"
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Layout/LineLength:
Max: 120
Metrics/BlockLength:
Exclude:
- "spec/**/*"
- "*.gemspec"
Metrics/MethodLength:
Max: 25
Metrics/AbcSize:
Max: 20
Metrics/CyclomaticComplexity:
Max: 10
Metrics/PerceivedComplexity:
Max: 12
Metrics/ParameterLists:
Max: 8
CountKeywordArgs: false
Metrics/ClassLength:
Max: 150
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: true
EnforcedStyle: always
Gemspec/DevelopmentDependencies:
Enabled: false
Style/MultipleComparison:
Exclude:
- "spec/**/*"
Style/HashExcept:
Exclude:
- "spec/**/*"