-
Notifications
You must be signed in to change notification settings - Fork 2
/
rubocop.yml
125 lines (125 loc) · 2.68 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
AllCops:
TargetRubyVersion: 2.5.0
DisplayCopNames: true
Layout/CaseIndentation:
IndentOneStep: true
Layout/FirstArrayElementLineBreak:
Enabled: true
Layout/FirstHashElementLineBreak:
Enabled: true
Layout/FirstMethodArgumentLineBreak:
Enabled: true
Layout/FirstMethodParameterLineBreak:
Enabled: true
Layout/MultilineAssignmentLayout:
Enabled: true
EnforcedStyle: same_line
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Metrics/ParameterLists:
Max: 5
Naming/VariableNumber:
EnforcedStyle: snake_case
Style/AndOr:
EnforcedStyle: conditionals
Style/AutoResourceCleanup:
Enabled: true
Style/Documentation:
Enabled: false
Style/EmptyLiteral:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/FormatStringToken:
EnforcedStyle: template
Style/ImplicitRuntimeError:
Enabled: true
Style/MethodCalledOnDoEndBlock:
Enabled: true
Style/MethodDefParentheses:
EnforcedStyle: require_parentheses
Style/MissingElse:
Enabled: true
EnforcedStyle: case
Style/NumericLiterals:
Enabled: false
Style/OptionHash:
Enabled: true
Style/ReturnNil:
Enabled: true
Style/SafeNavigation:
Enabled: false
Style/Send:
Enabled: true
Style/SignalException:
EnforcedStyle: semantic
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Style/StringMethods:
Enabled: true
Style/SymbolArray:
Enabled: true
# this allows in rspec to have expect { } with multiple lines
Style/BlockDelimiters:
EnforcedStyle: braces_for_chaining
Layout/EndOfLine:
Enabled: false
# don't need these checks in test folders
Metrics/ModuleLength:
Exclude:
- "spec/**/*"
- "test/**/*"
Metrics/BlockLength:
Exclude:
- "spec/**/*"
- "test/**/*"
- "*.gemspec" # definitely not in the gemspec
Metrics/MethodLength:
Max: 20
Lint/UnreachableCode:
Description: 'Unreachable code.'
Enabled: false
Lint/Void:
Enabled: false
Metrics/AbcSize:
Max: 25
Style/LambdaCall:
Enabled: false
Style/Semicolon:
Enabled: false
Naming/MethodParameterName:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Layout/LeadingCommentSpace:
Exclude:
- 'test/docs/**/*'
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Style/FrozenStringLiteralComment:
Enabled: false
Style/SingleLineMethods:
Enabled: false
Style/Lambda:
EnforcedStyle: literal
Style/AsciiComments:
Enabled: false
Style/CollectionMethods:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
default: {}
"%q": '()'
"%r": '{}'
"%w": '[]'
"%": '{}'
"%W": '[]'
"%i": '[]'
"%I": '[]'
Style/HashSyntax:
Enabled: false