gl_rubocop 0.2.11 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/default.yml +73 -2
- data/gl_rubocop.gemspec +1 -0
- data/lib/gl_rubocop/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b577c0d013512c5d8ba1aceb36e2fd627b253c81712043fc34fc0ceead445fe2
|
4
|
+
data.tar.gz: 58eb42711279ba3c0f36f9809e57fcd1ed9d178cf764c8f1367d4f74c486f80b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 400902b6f175f59a4fb56a18edf45a6d216787221d6355d3d054cb1b96694607be98d8b5a522964b4e816358b819532e6735bf76c47d2aeeb517ec251f7d0dfc
|
7
|
+
data.tar.gz: 593697de8795b407b31c5789db03ceee26b8bf7de461f3e9db6e09b6101f4880bd0f9ea882cf9fb861aa34c61e19e67b643fcfccdd4971e84e94febd3ccd8bc7
|
data/default.yml
CHANGED
@@ -5,8 +5,10 @@ require:
|
|
5
5
|
- rubocop-magic_numbers
|
6
6
|
- rubocop-haml
|
7
7
|
- rubocop-rake
|
8
|
-
-
|
8
|
+
- rubocop-sorbet
|
9
9
|
- ./lib/gl_rubocop/gl_cops/callback_method_names.rb
|
10
|
+
- ./lib/gl_rubocop/gl_cops/interactor_inherits_from_interactor_base.rb
|
11
|
+
- ./lib/gl_rubocop/gl_cops/no_stubbing_perform_async.rb
|
10
12
|
- ./lib/gl_rubocop/gl_cops/prevent_erb_files.rb
|
11
13
|
- ./lib/gl_rubocop/gl_cops/rails_cache.rb
|
12
14
|
- ./lib/gl_rubocop/gl_cops/sidekiq_inherits_from_sidekiq_job.rb
|
@@ -41,6 +43,9 @@ GLCops/InteractorInheritsFromInteractorBase:
|
|
41
43
|
Include:
|
42
44
|
- "app/interactors/**/*"
|
43
45
|
|
46
|
+
GLCops/NoStubbingPerformAsync:
|
47
|
+
Enabled: true
|
48
|
+
|
44
49
|
GLCops/PreventErbFiles:
|
45
50
|
Enabled: true
|
46
51
|
|
@@ -216,7 +221,7 @@ RSpec/MessageSpies:
|
|
216
221
|
RSpec/MultipleExpectations:
|
217
222
|
Exclude:
|
218
223
|
- "spec/system/**/*"
|
219
|
-
Max:
|
224
|
+
Max: 8
|
220
225
|
|
221
226
|
RSpec/MultipleMemoizedHelpers:
|
222
227
|
Enabled: false
|
@@ -290,6 +295,72 @@ Rails/UnusedIgnoredColumns:
|
|
290
295
|
# It is disabled by default in rubocop-rails
|
291
296
|
Enabled: false
|
292
297
|
|
298
|
+
Sorbet/AllowIncompatibleOverride:
|
299
|
+
Enabled: false
|
300
|
+
|
301
|
+
Sorbet/BindingConstantWithoutTypeAlias:
|
302
|
+
Enabled: false
|
303
|
+
|
304
|
+
Sorbet/BuggyObsoleteStrictMemoization:
|
305
|
+
Enabled: false
|
306
|
+
|
307
|
+
Sorbet/CheckedTrueInSignature:
|
308
|
+
Enabled: false
|
309
|
+
|
310
|
+
Sorbet/ConstantsFromStrings:
|
311
|
+
Enabled: true
|
312
|
+
|
313
|
+
Sorbet/EmptyLineAfterSig:
|
314
|
+
Enabled: false
|
315
|
+
|
316
|
+
Sorbet/EnforceSigilOrder:
|
317
|
+
Enabled: false
|
318
|
+
|
319
|
+
Sorbet/EnforceSingleSigil:
|
320
|
+
Enabled: false
|
321
|
+
|
322
|
+
Sorbet/FalseSigil:
|
323
|
+
Enabled: false
|
324
|
+
|
325
|
+
Sorbet/ForbidComparableTEnum:
|
326
|
+
Enabled: false
|
327
|
+
|
328
|
+
Sorbet/ForbidExtendTSigHelpersInShims:
|
329
|
+
Enabled: false
|
330
|
+
|
331
|
+
Sorbet/ForbidRBIOutsideOfAllowedPaths:
|
332
|
+
Enabled: false
|
333
|
+
|
334
|
+
Sorbet/ForbidUntypedStructProps:
|
335
|
+
Enabled: false
|
336
|
+
|
337
|
+
Sorbet/KeywordArgumentOrdering:
|
338
|
+
Enabled: false
|
339
|
+
|
340
|
+
Sorbet/MultipleTEnumValues:
|
341
|
+
Enabled: false
|
342
|
+
|
343
|
+
Sorbet/ObsoleteStrictMemoization:
|
344
|
+
Enabled: false
|
345
|
+
|
346
|
+
Sorbet/SelectByIsA:
|
347
|
+
Enabled: false
|
348
|
+
|
349
|
+
Sorbet/SignatureBuildOrder:
|
350
|
+
Enabled: false
|
351
|
+
|
352
|
+
Sorbet/TypeAliasName:
|
353
|
+
Enabled: false
|
354
|
+
|
355
|
+
Sorbet/ValidGemVersionAnnotations:
|
356
|
+
Enabled: false
|
357
|
+
|
358
|
+
Sorbet/ValidSigil:
|
359
|
+
Enabled: false
|
360
|
+
|
361
|
+
Sorbet/VoidCheckedTests:
|
362
|
+
Enabled: false
|
363
|
+
|
293
364
|
Style/Alias:
|
294
365
|
EnforcedStyle: prefer_alias_method
|
295
366
|
|
data/gl_rubocop.gemspec
CHANGED
data/lib/gl_rubocop/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gl_rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Give Lively
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -108,6 +108,20 @@ dependencies:
|
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '2.25'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubocop-sorbet
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
111
125
|
description:
|
112
126
|
email:
|
113
127
|
executables: []
|