forked from Fustrate/sidekiq-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
40 lines (29 loc) · 871 Bytes
/
.rubocop.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
AllCops:
EnabledByDefault: true
NewCops: enable
TargetRubyVersion: 3.1
# ------------------------------------------------------------------------------
# Cops that should not be run
# ------------------------------------------------------------------------------
# Recommends right hand side of multi-line assignment be on a new line
Layout/MultilineAssignmentLayout:
Enabled: false
# Recommends squishing a multi-line hash into one line. I don't like that. It's not readable.
Layout/RedundantLineBreak:
Enabled: false
Lint/ConstantResolution:
Enabled: false
Lint/NumberConversion:
Enabled: false
Style/ConstantVisibility:
Enabled: false
Style/Copyright:
Enabled: false
Style/Documentation:
Enabled: false
Style/DocumentationMethod:
Enabled: false
Style/MethodCallWithArgsParentheses:
Enabled: false
Style/MissingElse:
Enabled: false