-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.rubocop.yml
More file actions
48 lines (34 loc) · 742 Bytes
/
.rubocop.yml
File metadata and controls
48 lines (34 loc) · 742 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
AllCops:
TargetRubyVersion: 3.4
NewCops: enable
SuggestExtensions: false
Style/Alias:
EnforcedStyle: prefer_alias_method
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/RescueStandardError:
EnforcedStyle: implicit
Style/SafeNavigationChainLength:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/TernaryParentheses:
Enabled: false
Layout/LineLength:
Max: 120
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Metrics/BlockLength:
Exclude:
- "spec/**/*.rb"
- "fakeit.gemspec"
Security/Open:
Enabled: false
Style/HashTransformKeys:
Enabled: false
Metrics/ParameterLists:
CountKeywordArgs: false
Metrics/MethodLength:
Max: 20