-
Notifications
You must be signed in to change notification settings - Fork 74
/
.rubocop.yml
264 lines (212 loc) · 6.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
require:
- rubocop-rails
- rubocop-performance
Rails:
Enabled: true
Lint:
Enabled: true
Performance:
Enabled: true
Metrics:
Enabled: true
Lint/AssignmentInCondition:
AllowSafeAssignment: true
Lint/MissingSuper:
Enabled: true
Exclude:
# this cop is wrong when inheriting from Patterns::Service
- 'app/services/**/*'
Style/SymbolProc:
AutoCorrect: false
Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Layout/LeadingCommentSpace:
Enabled: false
Style/NumericLiterals:
Enabled: false
Style/SignalException:
EnforcedStyle: only_raise
Style/AndOr:
EnforcedStyle: conditionals
Style/PercentLiteralDelimiters:
PreferredDelimiters:
default: ()
'%i': '[]'
'%I': '[]'
'%r': '{}'
'%w': '[]'
'%W': '[]'
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/Lambda:
EnforcedStyle: literal
Layout/LineLength:
Max: 99
Enabled: false
Metrics/AbcSize:
Max: 20
Metrics/MethodLength:
Max: 20
Metrics/ClassLength:
Max: 200
AllCops:
NewCops: enable
TargetRubyVersion: 3.1
UseCache: true
Exclude:
- 'db/**/*'
- 'public/**/*'
Layout/DefEndAlignment:
AutoCorrect: true
# Offense count: 40
# Cop supports --auto-correct.
# Configuration parameters: AlignWith, SupportedStyles, AutoCorrect.
# SupportedStyles: keyword, variable, start_of_line
Layout/EndAlignment:
Enabled: false
# Offense count: 110
# Cop supports --auto-correct.
# Configuration parameters: IgnoreEmptyBlocks, AllowUnusedKeywordArguments.
Lint/UnusedBlockArgument:
Enabled: false
# Offense count: 87
# Cop supports --auto-correct.
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods.
Lint/UnusedMethodArgument:
Enabled: false
# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: Include.
# Include: app/models/**/*.rb
Rails/FindEach:
Exclude:
- 'app/models/web_hook_failures.rb'
# Offense count: 5038
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, ConsistentQuotesInMultiline.
# SupportedStyles: single_quotes, double_quotes
Style/StringLiterals:
Enabled: false
# Offense count: 1316
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SupportedStyles.
# SupportedStyles: space, no_space, compact
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
# Offense count: 514
# Cop supports --auto-correct.
Layout/SpaceInsideReferenceBrackets:
Enabled: false
# Offense count: 240
# Cop supports --auto-correct.
Layout/SpaceInsideParens:
Enabled: false
# Offense count: 366
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
# SupportedStyles: space, no_space
Layout/SpaceInsideBlockBraces:
Enabled: false
# Offense count: 753
# Cop supports --auto-correct.
# Configuration parameters: AllowForAlignment.
Layout/SpaceAroundOperators:
Enabled: false
# Offense count: 139
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyleInsidePipes, SupportedStyles.
# SupportedStyles: space, no_space
Layout/SpaceAroundBlockParameters:
Enabled: false
# Offense count: 353
# Cop supports --auto-correct.
Layout/SpaceAfterComma:
Enabled: false
# Offense count: 149
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: aligned, indented, indented_relative_to_receiver
Layout/MultilineMethodCallIndentation:
Enabled: false
# Offense count: 48
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: symmetrical, new_line, same_line
Layout/MultilineHashBraceLayout:
Enabled: false
# Offense count: 65
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: symmetrical, new_line, same_line
Layout/MultilineMethodCallBraceLayout:
Enabled: false
# Offense count: 7988
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, UseHashRocketsWithSymbolValues, PreferHashRocketsForNonAlnumEndingSymbols.
# SupportedStyles: ruby19, ruby19_no_mixed_keys, hash_rockets
Style/HashSyntax:
Enabled: false
# Offense count: 324
# Cop supports --auto-correct.
# Configuration parameters: AllowForAlignment, ForceEqualSignAlignment.
Layout/ExtraSpacing:
Enabled: false
# Offense count: 673
# Cop supports --auto-correct.
Layout/EmptyLines:
Enabled: false
# Offense count: 35
# Cop supports --auto-correct.
Layout/EmptyLinesAroundAccessModifier:
Enabled: false
# Offense count: 404
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: empty_lines, no_empty_lines
Layout/EmptyLinesAroundBlockBody:
Enabled: false
# Offense count: 1179
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: empty_lines, no_empty_lines
Layout/EmptyLinesAroundClassBody:
Enabled: false
# Offense count: 76
# Cop supports --auto-correct.
Layout/EmptyLinesAroundMethodBody:
Enabled: false
# Offense count: 357
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: empty_lines, no_empty_lines
Layout/EmptyLinesAroundModuleBody:
Enabled: false
# Offense count: 519
# Cop supports --auto-correct.
# Configuration parameters: EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle, SupportedLastArgumentHashStyles.
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
Layout/HashAlignment:
Enabled: false
# Offense count: 307
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: with_first_parameter, with_fixed_indentation
Layout/ParameterAlignment:
Enabled: false
# Offense count: 1140
Lint/AmbiguousRegexpLiteral:
Enabled: false
# Offense count: 3
# Cop supports --auto-correct.
Lint/Debugger:
Exclude:
- 'features/step_definitions/debugger_steps.rb'
- 'features/step_definitions/web_steps.rb'
Naming/RescuedExceptionsVariableName:
PreferredName: exception
Rails/RakeEnvironment:
Enabled: false