-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop.yml
53 lines (49 loc) · 1 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
AllCops:
DisplayCopNames: true
TargetRubyVersion: 2.7
Exclude:
- 'test/**/test_*.rb'
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/ArgumentsForwarding:
Enabled: true
Style/CollectionCompact:
Enabled: true
Style/DocumentDynamicEvalDefinition:
Enabled: true
Style/NegatedIfElseCondition:
Enabled: true
Style/SwapValues:
Enabled: true
Style/FrozenStringLiteralComment:
Enabled: false
Style/NilLambda:
Enabled: true
Style/RedundantArgument:
Enabled: true
Style/HashExcept:
Enabled: true
Lint/DuplicateRegexpCharacterClassElement:
Enabled: true
Lint/EmptyBlock:
Enabled: true
Lint/NoReturnInBeginEndBlocks:
Enabled: true
Lint/ToEnumArguments:
Enabled: true
Lint/UnmodifiedReduceAccumulator:
Enabled: true
Lint/DuplicateBranch:
Enabled: true
Lint/EmptyClass:
Enabled: true
Lint/AmbiguousAssignment:
Enabled: true
Lint/UnexpectedBlockArity:
Enabled: true
Layout/SpaceBeforeBrackets:
Enabled: true