-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.yml
More file actions
420 lines (348 loc) · 7.2 KB
/
default.yml
File metadata and controls
420 lines (348 loc) · 7.2 KB
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
plugins:
- rubocop-capybara
- rubocop-codeur
- rubocop-factory_bot
- rubocop-minitest
- rubocop-performance
- rubocop-rails
AllCops:
Exclude:
- "db/schema.rb"
- "db/*_schema.rb"
- "node_modules/**/*"
- "public/**/*"
- "tmp/**/*"
- "vendor/**/*"
- "bin/*"
- "test/dummy/db/schema.rb"
- "test/dummy/db/*_schema.rb"
- "test/dummy/tmp/**/*"
TargetRubyVersion: 3.4
TargetRailsVersion: 7.2
NewCops: enable
Rails:
Enabled: true
Codeur/RailsAppPatterns:
Enabled: true
ForbiddenPatterns:
- presenters
- view_objects
- modules
Codeur/RailsAvoidInstanceMethodsInHelpers:
Enabled: false
FactoryBot/ExcessiveCreateList:
Enabled: true
MaxAmount: 25
FactoryBot/FactoryAssociationWithStrategy:
Enabled: false
Gemspec/RequireMFA:
Enabled: false
Gemspec/RequiredRubyVersion:
Enabled: false
Layout/AccessModifierIndentation:
Enabled: true
EnforcedStyle: outdent
IndentationWidth: 2
Layout/ArgumentAlignment:
Enabled: true
EnforcedStyle: with_first_argument
Layout/BlockAlignment:
EnforcedStyleAlignWith: start_of_block
Layout/ClassStructure:
Enabled: true
AutoCorrect: false
ExpectedOrder:
- module_inclusion
- constants
- attributes
- delegated_type
- belongs_to
- has_many
- has_one
- attachments
- public_delegate
- class_macros
- callbacks
- state_machine
- aasm
- scope
- default_scope
- validations
- public_class_methods
- initializer
- public_methods
- protected_attribute_macros
- protected_methods
- private_attribute_macros
- private_delegate
- private_methods
Categories:
module_inclusion:
- include
- prepend
- extend
- devise
attachments:
- has_one_attached
- has_many_attached
- has_attached_file
- has_one_variable_attached
- clearable_attachments
attributes:
- attr_accessor
- attr_reader
- attr_writer
- attr_readonly
- emojify
- unemojify
- decode_ascii_emojis_from
- remove_emojis_from
- enum
- humanize_enums
- enumerize
- monetize
- serialize
- has_secure_token
- alias_attribute
- friendly_id
- slugs
- slug
- translate
- obfuscate
- store
- store_accessor
- normalizes
class_macros:
- has_ancestry
- acts_as_voter
- acts_as_list
- acts_as_tree
- counter_culture
- accepts_nested_attributes_for
- paginates_per
- ransack_alias
- ransacker
- ratyrate_rater
- pg_search_scope
- search_scope
- sortable
- tracked
callbacks:
- after_initialize
- before_validation
- around_validation
- after_validation
- before_save
- around_save
- after_save
- before_create
- around_create
- after_create
- before_update
- around_update
- after_update
- before_destroy
- around_destroy
- after_destroy
- after_commit
- after_update_commit
- after_create_commit
- after_save_commit
- after_rollback
- after_discard
validations:
- validates_associated
- validates
- validate
- validates_each
- validates_attachment_format
- validates_file
- validates_image
Layout/FirstArrayElementIndentation:
Enabled: true
EnforcedStyle: consistent
Layout/FirstHashElementIndentation:
Enabled: true
EnforcedStyle: consistent
Layout/HashAlignment:
Enabled: true
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Layout/LineLength:
Enabled: true
Max: 200
AutoCorrect: false
Exclude:
- "db/migrate/*"
Layout/MultilineMethodCallIndentation:
Enabled: true
EnforcedStyle: indented
Layout/ParameterAlignment:
Enabled: true
EnforcedStyle: with_fixed_indentation
IndentationWidth: 2
Lint/DuplicateMethods:
Enabled: true
Exclude:
- "db/migrate/*"
Lint/MissingSuper:
Enabled: false
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Metrics/AbcSize:
Enabled: true
Max: 65
Exclude:
- "db/migrate/*"
Metrics/BlockLength:
Enabled: true
Max: 60
Exclude:
- "config/routes.rb"
- "lib/tasks/**/*"
- "app/states/*"
Metrics/ClassLength:
Enabled: true
Max: 300
Exclude:
- "app/models/**/*"
Metrics/CyclomaticComplexity:
Enabled: true
Max: 10
Metrics/MethodLength:
Enabled: true
Max: 60
Exclude:
- "db/migrate/*"
Metrics/ModuleLength:
Enabled: true
Max: 300
Metrics/ParameterLists:
Enabled: true
Max: 5
CountKeywordArgs: false
MaxOptionalParameters: 3
Metrics/PerceivedComplexity:
Enabled: true
Max: 10
Minitest/EmptyLineBeforeAssertionMethods:
Enabled: false
Minitest/MultipleAssertions:
Enabled: true
Max: 30
Minitest/TestMethodName:
Enabled: false
Minitest/AssertPredicate:
Enabled: false
Minitest/AssertOperator:
Enabled: false
# Disabled because it doesn't with symbols like: record_001
Naming/VariableNumber:
Enabled: false
Naming/PredicateMethod:
Enabled: false
Naming/PredicatePrefix:
Enabled: false
Rails/BulkChangeTable:
Enabled: false
Rails/CreateTableWithTimestamps:
Enabled: true
Exclude:
- "db/migrate/{2012,2013,2014,2015,2016,2017,2018}*.rb"
Rails/EnvironmentVariableAccess:
Enabled: true
AllowReads: true
Rails/FilePath:
Enabled: true
EnforcedStyle: arguments
Rails/I18nLocaleTexts:
Enabled: false
Rails/NotNullColumn:
Enabled: true
Exclude:
- "db/migrate/201*.rb"
Rails/ReflectionClassName:
Enabled: false
Rails/ReversibleMigration:
Enabled: true
Exclude:
- "db/migrate/{2012,2013,2014,2015,2016,2017,2018}*.rb"
Rails/SaveBang:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
Exclude:
- "lib/tasks/**/*"
- "db/migrate/*.rb"
Rails/ThreeStateBooleanColumn:
Enabled: true
Exclude:
- "db/migrate/201*.rb"
Rails/TimeZone:
Enabled: true
AutoCorrect: false
Rails/UnknownEnv:
Enabled: true
Environments:
- development
- test
- staging
- production
- local
Style/AsciiComments:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: true
AutoCorrect: true
Style/CollectionQuerying:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Style/Documentation:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/EmptyMethod:
Enabled: true
EnforcedStyle: expanded
Style/FormatStringToken:
Enabled: true
Exclude:
- "config/routes.rb"
- "config/routes/*"
Style/FrozenStringLiteralComment:
SafeAutoCorrect: true
Style/GuardClause:
Enabled: true
MinBodyLength: 3
Style/HashEachMethods:
Enabled: true
AutoCorrect: true
Style/HashSyntax:
Enabled: true
EnforcedStyle: ruby19
EnforcedShorthandSyntax: never
Style/HashTransformKeys:
Enabled: true
AutoCorrect: true
Style/HashTransformValues:
Enabled: true
AutoCorrect: true
Style/IfUnlessModifier:
Enabled: false
Style/MultipleComparison:
Enabled: false
Style/NestedTernaryOperator:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/OneClassPerFile:
Enabled: false
Style/StringLiterals:
Enabled: true
EnforcedStyle: single_quotes
Style/SymbolArray:
Enabled: true
MinSize: 7