forked from theforeman/smart-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
48 lines (37 loc) · 852 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
41
42
43
44
45
46
47
48
inherit_from: .rubocop_todo.yml
# Offense count: 11
Lint/AmbiguousRegexpLiteral:
Enabled: false
# Offense count: 14
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
Enabled: false
# Offense count: 3
Lint/Eval:
Enabled: false
# Offense count: 13
# Cop supports --auto-correct.
Lint/RescueException:
Enabled: false
# Offense count: 9
# Cop supports --auto-correct.
Lint/StringConversionInInterpolation:
Enabled: true
# Offense count: 9
# Cop supports --auto-correct.
Lint/UnusedBlockArgument:
Enabled: false
# Offense count: 18
# Cop supports --auto-correct.
Lint/UnusedMethodArgument:
Enabled: false
# Offense count: 5
Metrics/BlockNesting:
Max: 4
Style/SymbolProc:
Enabled: false
# Some logging methods need more params than usual
Metrics/ParameterLists:
Max: 8
Style/Lambda:
Enabled: false