-
Notifications
You must be signed in to change notification settings - Fork 47
/
.rubocop.yml
52 lines (48 loc) · 1022 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
49
50
51
52
inherit_from: .rubocop_todo.yml
AllCops:
DisplayCopNames: true
TargetRubyVersion: 2.6
NewCops: disable
Layout/FirstArgumentIndentation:
Enabled: false
Layout/LineLength:
Enabled: false
Naming/PredicateName:
Enabled: false
Naming/MethodParameterName:
Enabled: false
Naming/MemoizedInstanceVariableName:
Enabled: false
Style/Alias:
EnforcedStyle: prefer_alias_method
Style/GuardClause:
Enabled: false
Style/HashSyntax:
Exclude:
- 'Rakefile'
Style/IfUnlessModifier:
Enabled: false
Style/Next:
Enabled: false
Style/NumericLiterals:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%w': '[]'
'%i': '[]'
Style/RaiseArgs:
EnforcedStyle: compact
Style/RedundantCondition:
Enabled: false
Style/SignalException:
Enabled: false
Style/SoleNestedConditional:
Enabled: false
Style/StderrPuts:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false