forked from truecoach/retry_on_error
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
77 lines (53 loc) · 1.15 KB
/
.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
AllCops:
TargetRubyVersion: 2.7
Include:
- 'lib/**/*'
- 'spec/**/*'
Layout/LineLength:
Max: 120
Layout/SpaceBeforeBlockBraces:
EnforcedStyle: space
Layout/SpaceInsideArrayLiteralBrackets:
Enabled: false
Layout/SpaceInsideParens:
Enabled: false
Lint/DuplicateRegexpCharacterClassElement:
Enabled: true
Lint/EmptyBlock:
Enabled: false
Lint/MissingSuper:
Enabled: false
Lint/NoReturnInBeginEndBlocks:
Enabled: true
Lint/ToEnumArguments:
Enabled: true
Lint/UnmodifiedReduceAccumulator:
Enabled: true
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Style/ArgumentsForwarding:
Enabled: false # enable when Ruby 2.7 is min. supported version
Style/BlockDelimiters:
Enabled: false
Style/CollectionCompact:
Enabled: true
Style/Documentation:
Enabled: false
Style/DocumentDynamicEvalDefinition:
Enabled: true
Style/ExpandPathArguments:
Enabled: false
Style/Lambda:
Enabled: false
Style/MutableConstant:
Enabled: true
Style/MissingRespondToMissing:
Enabled: false
Style/NegatedIfElseCondition:
Enabled: true
Style/StringLiterals:
Enabled: false
Style/SwapValues:
Enabled: true