-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy path.rubocop.yml
More file actions
38 lines (35 loc) · 668 Bytes
/
.rubocop.yml
File metadata and controls
38 lines (35 loc) · 668 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
# Custom Enforced Rubocop Styles
LineLength:
Enabled: false
MethodLength:
Enabled: false
ClassLength:
Enabled: false
SignalException:
Enabled: false
RaiseArgs:
Enabled: false
ParameterLists:
Enabled: false
AbcSize:
Enabled: false
RedundantBegin:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
RescueException:
Enabled: false
NestedParenthesizedCalls:
Enabled: false
# Custom Enforced Hound Ruby Styles
CollectionMethods:
PreferredMethods:
detect: find
StringLiterals:
EnforcedStyle: single_quotes
SignalException:
EnforcedStyle: only_raise
Style/FrozenStringLiteralComment:
Enabled: false