-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
.rubocop_local.yml
62 lines (42 loc) · 984 Bytes
/
.rubocop_local.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
---
Layout/ClassStructure:
Enabled: false
Layout/ClosingParenthesisIndentation:
Enabled: false
Layout/DotPosition:
EnforcedStyle: 'trailing'
Layout/ExtraSpacing:
Enabled: false
Layout/IndentationWidth:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Naming/FileName:
Exclude:
- 'lib/ruby-progressbar.rb'
RSpec/NestedGroups:
Enabled: false
Style/ConstantVisibility:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/InverseMethods:
Enabled: false
Style/Lambda:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/OptionHash:
Enabled: false
Style/SafeNavigation:
Enabled: false
Style/SymbolArray:
Enabled: false
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: 'no_comma'
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: 'no_comma'
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: 'no_comma'