-
Notifications
You must be signed in to change notification settings - Fork 14
/
.rubocop.yml
61 lines (58 loc) · 1.21 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
# usage: `rubocop --lint`
AllCops:
NewCops: enable
# disable some linters that are not so likely to indicate bugs
Lint/AmbiguousAssignment:
Enabled: false
Lint/AmbiguousBlockAssociation:
Enabled: false
Lint/AmbiguousOperator:
Enabled: false
Lint/AmbiguousRegexpLiteral:
Enabled: false
Lint/AssignmentInCondition:
Enabled: false
Lint/ConstantDefinitionInBlock:
Enabled: false
Lint/ConstantResolution:
Enabled: false
Lint/DuplicateBranch:
Enabled: false
Lint/EmptyBlock:
Enabled: false
Lint/EmptyClass:
Enabled: false
Lint/EmptyConditionalBody:
Enabled: false
Lint/EmptyExpression:
Enabled: false
Lint/EmptyFile:
Enabled: false
Lint/EmptyWhen:
Enabled: false
Lint/EnsureReturn:
Enabled: false
Lint/Loop:
Enabled: false
Lint/MissingSuper:
Enabled: false
Lint/MixedRegexpCaptureTypes:
Enabled: false
Lint/NumberConversion:
Enabled: false
Lint/ParenthesesAsGroupedExpression:
Enabled: false
Lint/RedundantStringCoercion:
Enabled: false
Lint/ShadowedArgument:
Enabled: false
Lint/ShadowedException:
Enabled: false
Lint/ShadowingOuterLocalVariable:
Enabled: false
Lint/SuppressedException:
Enabled: false
Lint/UnusedBlockArgument:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false