-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
rubocop-oss.yml
44 lines (34 loc) · 858 Bytes
/
rubocop-oss.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
36
37
38
39
40
41
42
43
44
AllCops:
SuggestExtensions: false
# To allow #/ or #: comments.
Layout/LeadingCommentSpace:
Enabled: false
# This is flaky.
Layout/RescueEnsureAlignment:
Enabled: false
# Too much noise.
Layout/LineLength:
Enabled: false
# Too much noise.
Style/FrozenStringLiteralComment:
Enabled: false
# Don't see the need.
Style/NumericLiterals:
Enabled: false
# Don't see the need for these, too much noise.
Style/PerlBackrefs:
Enabled: false
# I prefer this approach.
Style/StringLiterals:
EnforcedStyle: double_quotes
# Consistency with above.
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
# I prefer this approach.
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: consistent_comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: consistent_comma
# Too much noise
Metrics:
Enabled: false