rubocop-sorbet 0.6.2 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/release.yml +23 -0
- data/Gemfile.lock +22 -40
- data/README.md +18 -5
- data/Rakefile +12 -16
- data/bin/console +3 -3
- data/bin/rspec +6 -6
- data/config/default.yml +59 -12
- data/config/rbi.yml +268 -0
- data/lib/rubocop/cop/sorbet/binding_constants_without_type_alias.rb +4 -4
- data/lib/rubocop/cop/sorbet/callback_conditionals_binding.rb +62 -58
- data/lib/rubocop/cop/sorbet/constants_from_strings.rb +1 -1
- data/lib/rubocop/cop/sorbet/forbid_include_const_literal.rb +11 -2
- data/lib/rubocop/cop/sorbet/forbid_superclass_const_literal.rb +2 -2
- data/lib/rubocop/cop/sorbet/forbid_t_unsafe.rb +2 -2
- data/lib/rubocop/cop/sorbet/forbid_untyped_struct_props.rb +2 -2
- data/lib/rubocop/cop/sorbet/one_ancestor_per_line.rb +2 -2
- data/lib/rubocop/cop/sorbet/rbi/forbid_extend_t_sig_helpers_in_shims.rb +1 -1
- data/lib/rubocop/cop/sorbet/rbi/forbid_rbi_outside_of_allowed_paths.rb +65 -0
- data/lib/rubocop/cop/sorbet/rbi/single_line_rbi_class_module_definitions.rb +1 -1
- data/lib/rubocop/cop/sorbet/sigils/enforce_sigil_order.rb +6 -6
- data/lib/rubocop/cop/sorbet/sigils/enforce_single_sigil.rb +63 -0
- data/lib/rubocop/cop/sorbet/sigils/false_sigil.rb +3 -3
- data/lib/rubocop/cop/sorbet/sigils/has_sigil.rb +2 -2
- data/lib/rubocop/cop/sorbet/sigils/ignore_sigil.rb +3 -3
- data/lib/rubocop/cop/sorbet/sigils/strict_sigil.rb +3 -3
- data/lib/rubocop/cop/sorbet/sigils/strong_sigil.rb +3 -3
- data/lib/rubocop/cop/sorbet/sigils/true_sigil.rb +3 -3
- data/lib/rubocop/cop/sorbet/sigils/valid_sigil.rb +9 -9
- data/lib/rubocop/cop/sorbet/signatures/allow_incompatible_override.rb +3 -3
- data/lib/rubocop/cop/sorbet/signatures/checked_true_in_signature.rb +6 -6
- data/lib/rubocop/cop/sorbet/signatures/enforce_signatures.rb +13 -13
- data/lib/rubocop/cop/sorbet/signatures/keyword_argument_ordering.rb +3 -3
- data/lib/rubocop/cop/sorbet/signatures/signature_build_order.rb +6 -6
- data/lib/rubocop/cop/sorbet/signatures/signature_cop.rb +17 -2
- data/lib/rubocop/cop/sorbet/type_alias_name.rb +45 -0
- data/lib/rubocop/cop/sorbet_cops.rb +26 -25
- data/lib/rubocop/sorbet/version.rb +1 -1
- data/lib/rubocop/sorbet.rb +1 -1
- data/lib/rubocop-sorbet.rb +5 -5
- data/manual/cops.md +3 -2
- data/manual/cops_sorbet.md +85 -31
- data/rubocop-sorbet.gemspec +2 -2
- data/service.yml +0 -2
- data/tasks/cops_documentation.rake +60 -62
- metadata +14 -11
- data/lib/rubocop/cop/sorbet/rbi/forbid_rbi_outside_of_sorbet_dir.rb +0 -31
- data/lib/rubocop/cop/sorbet/signatures/parameters_ordering_in_signature.rb +0 -70
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbc8c95598a4e9bdcc08915198dc90cea5df439d3f06ec72f7a36b6a8a792207
|
4
|
+
data.tar.gz: 7bff9273f2f52f43e18d32f32b3f58ccb988274ffc2bde3746b45556c981bf51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c749f0f371cb8e764c1db26221d3f0bebc83afc8466b7d07753c702f6e87d67657e2b0bed70f2c738d820377538356ed1259ab7317878c254fc6d2c86dc3aaf
|
7
|
+
data.tar.gz: 359d7e9082d01e25c088b902de0fa80d93625351caaaec52983c93eaaebbf5a9488977b4c18b0d0c1d5771cc2e97cc698c4b741addf765e739e737c01274597b
|
data/.github/release.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# release.yml
|
2
|
+
|
3
|
+
changelog:
|
4
|
+
exclude:
|
5
|
+
labels:
|
6
|
+
- dependencies
|
7
|
+
- chore
|
8
|
+
authors:
|
9
|
+
- dependabot
|
10
|
+
categories:
|
11
|
+
- title: 🚧 Breaking Changes
|
12
|
+
labels:
|
13
|
+
- breaking-change
|
14
|
+
- title: ✨ Enhancements
|
15
|
+
labels:
|
16
|
+
- enhancement
|
17
|
+
- feature
|
18
|
+
- title: 🐛 Bug Fixes
|
19
|
+
labels:
|
20
|
+
- bugfix
|
21
|
+
- title: 🛠 Other Changes
|
22
|
+
labels:
|
23
|
+
- "*"
|
data/Gemfile.lock
CHANGED
@@ -1,33 +1,21 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rubocop-sorbet (0.6.
|
5
|
-
rubocop
|
4
|
+
rubocop-sorbet (0.6.6)
|
5
|
+
rubocop (>= 0.90.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
|
11
|
-
adamantium (0.2.0)
|
12
|
-
ice_nine (~> 0.11.0)
|
13
|
-
memoizable (~> 0.4.0)
|
14
|
-
ast (2.4.0)
|
10
|
+
ast (2.4.2)
|
15
11
|
byebug (11.1.3)
|
16
|
-
concord (0.1.5)
|
17
|
-
adamantium (~> 0.2.0)
|
18
|
-
equalizer (~> 0.0.9)
|
19
12
|
diff-lcs (1.3)
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
parallel (1.19.1)
|
25
|
-
parser (2.7.1.3)
|
26
|
-
ast (~> 2.4.0)
|
27
|
-
procto (0.0.3)
|
28
|
-
rainbow (3.0.0)
|
13
|
+
parallel (1.21.0)
|
14
|
+
parser (3.0.1.1)
|
15
|
+
ast (~> 2.4.1)
|
16
|
+
rainbow (3.1.1)
|
29
17
|
rake (13.0.1)
|
30
|
-
regexp_parser (
|
18
|
+
regexp_parser (2.2.0)
|
31
19
|
rexml (3.2.5)
|
32
20
|
rspec (3.8.0)
|
33
21
|
rspec-core (~> 3.8.0)
|
@@ -42,30 +30,24 @@ GEM
|
|
42
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
43
31
|
rspec-support (~> 3.8.0)
|
44
32
|
rspec-support (3.8.2)
|
45
|
-
rubocop (
|
33
|
+
rubocop (1.24.1)
|
46
34
|
parallel (~> 1.10)
|
47
|
-
parser (>=
|
35
|
+
parser (>= 3.0.0.0)
|
48
36
|
rainbow (>= 2.2.2, < 4.0)
|
49
|
-
regexp_parser (>= 1.
|
37
|
+
regexp_parser (>= 1.8, < 3.0)
|
50
38
|
rexml
|
51
|
-
rubocop-ast (>=
|
39
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
52
40
|
ruby-progressbar (~> 1.7)
|
53
|
-
unicode-display_width (>= 1.4.0, <
|
54
|
-
rubocop-ast (
|
55
|
-
parser (>=
|
56
|
-
rubocop-shopify (1.0
|
57
|
-
rubocop (~>
|
58
|
-
ruby-progressbar (1.
|
59
|
-
|
60
|
-
|
61
|
-
unparser (0.4.7)
|
62
|
-
abstract_type (~> 0.0.7)
|
63
|
-
adamantium (~> 0.2.0)
|
64
|
-
concord (~> 0.1.5)
|
41
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
42
|
+
rubocop-ast (1.15.1)
|
43
|
+
parser (>= 3.0.1.1)
|
44
|
+
rubocop-shopify (2.1.0)
|
45
|
+
rubocop (~> 1.13)
|
46
|
+
ruby-progressbar (1.11.0)
|
47
|
+
unicode-display_width (2.1.0)
|
48
|
+
unparser (0.6.0)
|
65
49
|
diff-lcs (~> 1.3)
|
66
|
-
|
67
|
-
parser (>= 2.6.5)
|
68
|
-
procto (~> 0.0.2)
|
50
|
+
parser (>= 3.0.0)
|
69
51
|
yard (0.9.25)
|
70
52
|
|
71
53
|
PLATFORMS
|
@@ -77,7 +59,7 @@ DEPENDENCIES
|
|
77
59
|
rspec
|
78
60
|
rubocop-shopify
|
79
61
|
rubocop-sorbet!
|
80
|
-
unparser
|
62
|
+
unparser (~> 0.6)
|
81
63
|
yard (~> 0.9)
|
82
64
|
|
83
65
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
# Rubocop-Sorbet
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/Shopify/rubocop-sorbet.svg?branch=master)](https://travis-ci.org/Shopify/rubocop-sorbet)
|
4
|
-
|
5
3
|
A collection of Rubocop rules for Sorbet.
|
6
4
|
|
7
5
|
## Installation
|
@@ -17,7 +15,7 @@ or, if you use `Bundler`, add this line your application's `Gemfile`:
|
|
17
15
|
gem 'rubocop-sorbet', require: false
|
18
16
|
```
|
19
17
|
|
20
|
-
Note: in order to use the [Sorbet/SignatureBuildOrder](https://github.com/Shopify/rubocop-sorbet/blob/
|
18
|
+
Note: in order to use the [Sorbet/SignatureBuildOrder](https://github.com/Shopify/rubocop-sorbet/blob/main/manual/cops_sorbet.md#sorbetsignaturebuildorder) cop autocorrect feature, it is necessary
|
21
19
|
to install `unparser` in addition to `rubocop-sorbet`.
|
22
20
|
|
23
21
|
```ruby
|
@@ -60,6 +58,15 @@ RuboCop::RakeTask.new do |task|
|
|
60
58
|
end
|
61
59
|
```
|
62
60
|
|
61
|
+
### Rubocop rules for RBI files
|
62
|
+
|
63
|
+
Put this into your `.rubocop.yml`:
|
64
|
+
|
65
|
+
```yaml
|
66
|
+
inherit_gem:
|
67
|
+
rubocop-sorbet: config/rbi.yml
|
68
|
+
```
|
69
|
+
|
63
70
|
## The Cops
|
64
71
|
All cops are located under [`lib/rubocop/cop/sorbet`](lib/rubocop/cop/sorbet), and contain examples/documentation.
|
65
72
|
|
@@ -94,10 +101,16 @@ bundle exec rake new_cop[Sorbet/NewCopName]
|
|
94
101
|
|
95
102
|
which will create a skeleton cop, a skeleton spec, an entry in the default config file and will require the new cop so that it is properly exported from the gem.
|
96
103
|
|
104
|
+
Don't forget to update the documentation with:
|
105
|
+
|
106
|
+
```sh
|
107
|
+
bundle exec rake generate_cops_documentation
|
108
|
+
```
|
109
|
+
|
97
110
|
## License
|
98
111
|
|
99
|
-
The gem is available as open source under the terms of the [MIT License](https://github.com/Shopify/rubocop-sorbet/blob/
|
112
|
+
The gem is available as open source under the terms of the [MIT License](https://github.com/Shopify/rubocop-sorbet/blob/main/LICENSE.txt).
|
100
113
|
|
101
114
|
## Code of Conduct
|
102
115
|
|
103
|
-
Everyone interacting in the Rubocop::Sorbet project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/Shopify/rubocop-sorbet/blob/
|
116
|
+
Everyone interacting in the Rubocop::Sorbet project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/Shopify/rubocop-sorbet/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
@@ -1,40 +1,36 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require(
|
3
|
+
require("bundler/gem_tasks")
|
4
4
|
|
5
|
-
Dir[
|
5
|
+
Dir["tasks/**/*.rake"].each { |t| load t }
|
6
6
|
|
7
|
-
require
|
8
|
-
require
|
7
|
+
require "rubocop/rake_task"
|
8
|
+
require "rspec/core/rake_task"
|
9
9
|
|
10
10
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
11
|
-
spec.pattern = FileList[
|
11
|
+
spec.pattern = FileList["spec/**/*_spec.rb"]
|
12
12
|
end
|
13
13
|
|
14
|
-
task(default:
|
15
|
-
documentation_syntax_check
|
16
|
-
generate_cops_documentation
|
17
|
-
spec
|
18
|
-
])
|
14
|
+
task(default: [:documentation_syntax_check, :generate_cops_documentation, :spec])
|
19
15
|
|
20
|
-
desc(
|
16
|
+
desc("Generate a new cop with a template")
|
21
17
|
task :new_cop, [:cop] do |_task, args|
|
22
|
-
require
|
18
|
+
require "rubocop"
|
23
19
|
|
24
20
|
cop_name = args.fetch(:cop) do
|
25
|
-
warn
|
21
|
+
warn("usage: bundle exec rake new_cop[Department/Name]")
|
26
22
|
exit!
|
27
23
|
end
|
28
24
|
|
29
25
|
github_user = %x(git config github.user).chop
|
30
|
-
github_user =
|
26
|
+
github_user = "Shopify" if github_user.empty?
|
31
27
|
|
32
28
|
generator = RuboCop::Cop::Generator.new(cop_name, github_user)
|
33
29
|
|
34
30
|
generator.write_source
|
35
31
|
generator.write_spec
|
36
|
-
generator.inject_require(root_file_path:
|
37
|
-
generator.inject_config(config_file_path:
|
32
|
+
generator.inject_require(root_file_path: "lib/rubocop/cop/sorbet_cops.rb")
|
33
|
+
generator.inject_config(config_file_path: "config/default.yml")
|
38
34
|
|
39
35
|
puts generator.todo
|
40
36
|
end
|
data/bin/console
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require
|
5
|
-
require
|
4
|
+
require "bundler/setup"
|
5
|
+
require "rubocop/sorbet"
|
6
6
|
|
7
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
8
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -11,5 +11,5 @@ require 'rubocop/sorbet'
|
|
11
11
|
# require "pry"
|
12
12
|
# Pry.start
|
13
13
|
|
14
|
-
require
|
14
|
+
require "irb"
|
15
15
|
IRB.start(__FILE__)
|
data/bin/rspec
CHANGED
@@ -8,11 +8,11 @@
|
|
8
8
|
# this file is here to facilitate running it.
|
9
9
|
#
|
10
10
|
|
11
|
-
require
|
12
|
-
ENV[
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
13
|
Pathname.new(__FILE__).realpath)
|
14
14
|
|
15
|
-
bundle_binstub = File.expand_path(
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
16
|
|
17
17
|
if File.file?(bundle_binstub)
|
18
18
|
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
@@ -23,7 +23,7 @@ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
-
require
|
27
|
-
require
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
28
|
|
29
|
-
load(Gem.bin_path(
|
29
|
+
load(Gem.bin_path("rspec-core", "rspec"))
|
data/config/default.yml
CHANGED
@@ -16,7 +16,8 @@ Sorbet/BindingConstantWithoutTypeAlias:
|
|
16
16
|
|
17
17
|
Sorbet/CallbackConditionalsBinding:
|
18
18
|
Description: 'Ensures callback conditionals are bound to the right type.'
|
19
|
-
Enabled:
|
19
|
+
Enabled: false
|
20
|
+
Safe: false
|
20
21
|
VersionAdded: 0.7.0
|
21
22
|
|
22
23
|
Sorbet/CheckedTrueInSignature:
|
@@ -38,6 +39,11 @@ Sorbet/EnforceSigilOrder:
|
|
38
39
|
Enabled: true
|
39
40
|
VersionAdded: 0.3.4
|
40
41
|
|
42
|
+
Sorbet/sigils/EnforceSingleSigil:
|
43
|
+
Description: 'Ensures that there is only one Sorbet sigil in a file.'
|
44
|
+
Enabled: true
|
45
|
+
VersionAdded: '<<next>>'
|
46
|
+
|
41
47
|
Sorbet/EnforceSignatures:
|
42
48
|
Description: 'Ensures all methods have a valid signature.'
|
43
49
|
Enabled: false
|
@@ -49,10 +55,7 @@ Sorbet/FalseSigil:
|
|
49
55
|
VersionAdded: 0.3.3
|
50
56
|
SuggestedStrictness: "false"
|
51
57
|
Include:
|
52
|
-
- "**/*.rb"
|
53
|
-
- "**/*.rbi"
|
54
|
-
- "**/*.rake"
|
55
|
-
- "**/*.ru"
|
58
|
+
- "**/*.{rb,rbi,rake,ru}"
|
56
59
|
Exclude:
|
57
60
|
- bin/**/*
|
58
61
|
- db/**/*.rb
|
@@ -65,10 +68,12 @@ Sorbet/ForbidExtendTSigHelpersInShims:
|
|
65
68
|
Include:
|
66
69
|
- "**/*.rbi"
|
67
70
|
|
68
|
-
Sorbet/
|
69
|
-
Description: 'Forbids RBI files outside of the
|
71
|
+
Sorbet/ForbidRBIOutsideOfAllowedPaths:
|
72
|
+
Description: 'Forbids RBI files outside of the allowed paths'
|
70
73
|
Enabled: true
|
71
74
|
VersionAdded: 0.6.1
|
75
|
+
AllowedPaths:
|
76
|
+
- "sorbet/rbi/**"
|
72
77
|
Include:
|
73
78
|
- "**/*.rbi"
|
74
79
|
|
@@ -105,12 +110,24 @@ Sorbet/HasSigil:
|
|
105
110
|
SuggestedStrictness: "false"
|
106
111
|
MinimumStrictness: "false"
|
107
112
|
VersionAdded: 0.3.3
|
113
|
+
Include:
|
114
|
+
- "**/*.{rb,rbi,rake,ru}"
|
115
|
+
Exclude:
|
116
|
+
- bin/**/*
|
117
|
+
- db/**/*.rb
|
118
|
+
- script/**/*
|
108
119
|
|
109
120
|
Sorbet/IgnoreSigil:
|
110
121
|
Description: 'All files must be at least at strictness `ignore`.'
|
111
122
|
Enabled: false
|
112
123
|
SuggestedStrictness: "ignore"
|
113
124
|
VersionAdded: 0.3.3
|
125
|
+
Include:
|
126
|
+
- "**/*.{rb,rbi,rake,ru}"
|
127
|
+
Exclude:
|
128
|
+
- bin/**/*
|
129
|
+
- db/**/*.rb
|
130
|
+
- script/**/*
|
114
131
|
|
115
132
|
Sorbet/KeywordArgumentOrdering:
|
116
133
|
Description: >-
|
@@ -127,11 +144,6 @@ Sorbet/OneAncestorPerLine:
|
|
127
144
|
Enabled: false
|
128
145
|
VersionAdded: '0.6.0'
|
129
146
|
|
130
|
-
Sorbet/ParametersOrderingInSignature:
|
131
|
-
Description: 'Enforces same parameter order between a method and its signature.'
|
132
|
-
Enabled: true
|
133
|
-
VersionAdded: 0.2.0
|
134
|
-
|
135
147
|
Sorbet/SignatureBuildOrder:
|
136
148
|
Description: >-
|
137
149
|
Enforces the order of parts in a signature.
|
@@ -154,18 +166,47 @@ Sorbet/StrictSigil:
|
|
154
166
|
Enabled: false
|
155
167
|
SuggestedStrictness: "strict"
|
156
168
|
VersionAdded: 0.3.3
|
169
|
+
Include:
|
170
|
+
- "**/*.{rb,rbi,rake,ru}"
|
171
|
+
Exclude:
|
172
|
+
- bin/**/*
|
173
|
+
- db/**/*.rb
|
174
|
+
- script/**/*
|
157
175
|
|
158
176
|
Sorbet/StrongSigil:
|
159
177
|
Description: 'All files must be at least at strictness `strong`.'
|
160
178
|
Enabled: false
|
161
179
|
SuggestedStrictness: "strong"
|
162
180
|
VersionAdded: 0.3.3
|
181
|
+
Include:
|
182
|
+
- "**/*.{rb,rbi,rake,ru}"
|
183
|
+
Exclude:
|
184
|
+
- bin/**/*
|
185
|
+
- db/**/*.rb
|
186
|
+
- script/**/*
|
163
187
|
|
164
188
|
Sorbet/TrueSigil:
|
165
189
|
Description: 'All files must be at least at strictness `true`.'
|
166
190
|
Enabled: false
|
167
191
|
SuggestedStrictness: "true"
|
168
192
|
VersionAdded: 0.3.3
|
193
|
+
Include:
|
194
|
+
- "**/*.{rb,rbi,rake,ru}"
|
195
|
+
Exclude:
|
196
|
+
- bin/**/*
|
197
|
+
- db/**/*.rb
|
198
|
+
- script/**/*
|
199
|
+
|
200
|
+
Sorbet/TypeAliasName:
|
201
|
+
Description: 'Type alias constant names must be in CamelCase.'
|
202
|
+
Enabled: true
|
203
|
+
VersionAdded: 0.6.6
|
204
|
+
Include:
|
205
|
+
- "**/*.{rb,rbi,rake,ru}"
|
206
|
+
Exclude:
|
207
|
+
- bin/**/*
|
208
|
+
- db/**/*.rb
|
209
|
+
- script/**/*
|
169
210
|
|
170
211
|
Sorbet/ValidSigil:
|
171
212
|
Description: 'All files must have a valid sigil.'
|
@@ -174,3 +215,9 @@ Sorbet/ValidSigil:
|
|
174
215
|
SuggestedStrictness: "false"
|
175
216
|
MinimumStrictness: "false"
|
176
217
|
VersionAdded: 0.3.3
|
218
|
+
Include:
|
219
|
+
- "**/*.{rb,rbi,rake,ru}"
|
220
|
+
Exclude:
|
221
|
+
- bin/**/*
|
222
|
+
- db/**/*.rb
|
223
|
+
- script/**/*
|
data/config/rbi.yml
ADDED
@@ -0,0 +1,268 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop-sorbet
|
3
|
+
|
4
|
+
AllCops:
|
5
|
+
TargetRubyVersion: 3.0
|
6
|
+
DisabledByDefault: true
|
7
|
+
Include:
|
8
|
+
- '**/*.rbi'
|
9
|
+
|
10
|
+
## Layout
|
11
|
+
|
12
|
+
Layout/AccessModifierIndentation:
|
13
|
+
Enabled: true
|
14
|
+
|
15
|
+
Layout/ArgumentAlignment:
|
16
|
+
Enabled: true
|
17
|
+
|
18
|
+
Layout/BlockAlignment:
|
19
|
+
Enabled: true
|
20
|
+
|
21
|
+
Layout/BlockEndNewline:
|
22
|
+
Enabled: true
|
23
|
+
|
24
|
+
Layout/ClassStructure:
|
25
|
+
Enabled: true
|
26
|
+
ExpectedOrder:
|
27
|
+
- module_inclusion
|
28
|
+
- macros
|
29
|
+
- public_attribute_macros
|
30
|
+
- protected_attribute_macros
|
31
|
+
- private_attribute_macros
|
32
|
+
- initializer
|
33
|
+
- public_methods
|
34
|
+
- protected_methods
|
35
|
+
- private_methods
|
36
|
+
- public_class_methods
|
37
|
+
- constants
|
38
|
+
|
39
|
+
Layout/ClosingParenthesisIndentation:
|
40
|
+
Enabled: true
|
41
|
+
|
42
|
+
Layout/CommentIndentation:
|
43
|
+
Enabled: true
|
44
|
+
|
45
|
+
Layout/EmptyComment:
|
46
|
+
Enabled: true
|
47
|
+
|
48
|
+
Layout/EmptyLineAfterMagicComment:
|
49
|
+
Enabled: true
|
50
|
+
|
51
|
+
Layout/EmptyLineBetweenDefs:
|
52
|
+
Enabled: true
|
53
|
+
AllowAdjacentOneLineDefs: true
|
54
|
+
|
55
|
+
Layout/EmptyLines:
|
56
|
+
Enabled: true
|
57
|
+
|
58
|
+
Layout/EmptyLinesAroundAccessModifier:
|
59
|
+
Enabled: true
|
60
|
+
|
61
|
+
Layout/EmptyLinesAroundArguments:
|
62
|
+
Enabled: true
|
63
|
+
|
64
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
65
|
+
Enabled: true
|
66
|
+
|
67
|
+
Layout/EmptyLinesAroundBlockBody:
|
68
|
+
Enabled: true
|
69
|
+
|
70
|
+
Layout/EmptyLinesAroundClassBody:
|
71
|
+
Enabled: true
|
72
|
+
|
73
|
+
Layout/EmptyLinesAroundModuleBody:
|
74
|
+
Enabled: true
|
75
|
+
|
76
|
+
Layout/EndOfLine:
|
77
|
+
Enabled: true
|
78
|
+
EnforcedStyle: lf
|
79
|
+
|
80
|
+
Layout/ExtraSpacing:
|
81
|
+
Enabled: true
|
82
|
+
|
83
|
+
Layout/FirstMethodArgumentLineBreak:
|
84
|
+
Enabled: true
|
85
|
+
|
86
|
+
Layout/FirstMethodParameterLineBreak:
|
87
|
+
Enabled: true
|
88
|
+
|
89
|
+
Layout/FirstParameterIndentation:
|
90
|
+
Enabled: true
|
91
|
+
|
92
|
+
Layout/IndentationConsistency:
|
93
|
+
Enabled: true
|
94
|
+
|
95
|
+
Layout/IndentationStyle:
|
96
|
+
Enabled: true
|
97
|
+
EnforcedStyle: spaces
|
98
|
+
|
99
|
+
Layout/IndentationWidth:
|
100
|
+
Enabled: true
|
101
|
+
|
102
|
+
Layout/InitialIndentation:
|
103
|
+
Enabled: true
|
104
|
+
|
105
|
+
Layout/LeadingCommentSpace:
|
106
|
+
Enabled: true
|
107
|
+
|
108
|
+
Layout/LeadingEmptyLines:
|
109
|
+
Enabled: true
|
110
|
+
|
111
|
+
# TODO: make Tapioca break long lines?
|
112
|
+
Layout/LineLength:
|
113
|
+
Enabled: false
|
114
|
+
|
115
|
+
Layout/MultilineBlockLayout:
|
116
|
+
Enabled: true
|
117
|
+
|
118
|
+
Layout/MultilineMethodArgumentLineBreaks:
|
119
|
+
Enabled: true
|
120
|
+
|
121
|
+
Layout/MultilineMethodCallBraceLayout:
|
122
|
+
Enabled: true
|
123
|
+
|
124
|
+
Layout/MultilineMethodCallIndentation:
|
125
|
+
Enabled: true
|
126
|
+
|
127
|
+
Layout/ParameterAlignment:
|
128
|
+
Enabled: true
|
129
|
+
|
130
|
+
Layout/RedundantLineBreak:
|
131
|
+
Enabled: true
|
132
|
+
|
133
|
+
Layout/SpaceAfterColon:
|
134
|
+
Enabled: true
|
135
|
+
|
136
|
+
Layout/SpaceAfterComma:
|
137
|
+
Enabled: true
|
138
|
+
|
139
|
+
Layout/SpaceAfterMethodName:
|
140
|
+
Enabled: true
|
141
|
+
|
142
|
+
Layout/SpaceAfterSemicolon:
|
143
|
+
Enabled: true
|
144
|
+
|
145
|
+
Layout/SpaceAroundEqualsInParameterDefault:
|
146
|
+
Enabled: true
|
147
|
+
|
148
|
+
Layout/SpaceAroundKeyword:
|
149
|
+
Enabled: true
|
150
|
+
|
151
|
+
Layout/SpaceAroundMethodCallOperator:
|
152
|
+
Enabled: true
|
153
|
+
|
154
|
+
Layout/SpaceBeforeBlockBraces:
|
155
|
+
Enabled: true
|
156
|
+
|
157
|
+
Layout/SpaceBeforeBrackets:
|
158
|
+
Enabled: true
|
159
|
+
|
160
|
+
Layout/SpaceBeforeComma:
|
161
|
+
Enabled: true
|
162
|
+
|
163
|
+
Layout/SpaceBeforeComment:
|
164
|
+
Enabled: true
|
165
|
+
|
166
|
+
Layout/SpaceBeforeFirstArg:
|
167
|
+
Enabled: true
|
168
|
+
|
169
|
+
Layout/SpaceBeforeSemicolon:
|
170
|
+
Enabled: true
|
171
|
+
|
172
|
+
Layout/SpaceInsideParens:
|
173
|
+
Enabled: true
|
174
|
+
|
175
|
+
Layout/TrailingEmptyLines:
|
176
|
+
Enabled: true
|
177
|
+
EnforcedStyle: final_newline
|
178
|
+
|
179
|
+
Layout/TrailingWhitespace:
|
180
|
+
Enabled: true
|
181
|
+
|
182
|
+
## Lint
|
183
|
+
|
184
|
+
Lint/DuplicateMethods:
|
185
|
+
Enabled: true
|
186
|
+
|
187
|
+
Lint/EmptyFile:
|
188
|
+
Enabled: true
|
189
|
+
AllowComments: false
|
190
|
+
|
191
|
+
Lint/Syntax:
|
192
|
+
Enabled: true
|
193
|
+
|
194
|
+
## Sorbet
|
195
|
+
|
196
|
+
Sorbet:
|
197
|
+
DisabledByDefault: true
|
198
|
+
|
199
|
+
Sorbet/EnforceSigilOrder:
|
200
|
+
Enabled: true
|
201
|
+
|
202
|
+
Sorbet/EnforceSingleSigil:
|
203
|
+
Enabled: true
|
204
|
+
|
205
|
+
Sorbet/ForbidExtendTSigHelpersInShims:
|
206
|
+
Enabled: true
|
207
|
+
|
208
|
+
Sorbet/ForbidIncludeConstLiteral:
|
209
|
+
Enabled: true
|
210
|
+
|
211
|
+
Sorbet/ForbidSuperclassConstLiteral:
|
212
|
+
Enabled: true
|
213
|
+
|
214
|
+
Sorbet/OneAncestorPerLine:
|
215
|
+
Enabled: true
|
216
|
+
|
217
|
+
Sorbet/SignatureBuildOrder:
|
218
|
+
Enabled: true
|
219
|
+
|
220
|
+
Sorbet/SingleLineRbiClassModuleDefinitions:
|
221
|
+
Enabled: true
|
222
|
+
|
223
|
+
Sorbet/TypeAliasName:
|
224
|
+
Enabled: true
|
225
|
+
|
226
|
+
Sorbet/ValidSigil:
|
227
|
+
Enabled: true
|
228
|
+
RequireSigilOnAllFiles: true
|
229
|
+
MinimumStrictness: "false"
|
230
|
+
SuggestedStrictness: "true"
|
231
|
+
|
232
|
+
## Style
|
233
|
+
|
234
|
+
Style/ClassAndModuleChildren:
|
235
|
+
Enabled: true
|
236
|
+
EnforcedStyle: compact
|
237
|
+
|
238
|
+
Style/DefWithParentheses:
|
239
|
+
Enabled: true
|
240
|
+
|
241
|
+
Style/EmptyMethod:
|
242
|
+
Enabled: true
|
243
|
+
EnforcedStyle: compact
|
244
|
+
|
245
|
+
Style/FrozenStringLiteralComment:
|
246
|
+
Enabled: true
|
247
|
+
EnforcedStyle: never
|
248
|
+
|
249
|
+
Style/MethodCallWithArgsParentheses:
|
250
|
+
Enabled: true
|
251
|
+
IgnoreMacros: true
|
252
|
+
|
253
|
+
Style/MethodCallWithoutArgsParentheses:
|
254
|
+
Enabled: true
|
255
|
+
|
256
|
+
Style/MethodDefParentheses:
|
257
|
+
Enabled: true
|
258
|
+
|
259
|
+
Style/MixinGrouping:
|
260
|
+
Enabled: true
|
261
|
+
EnforcedStyle: separated
|
262
|
+
|
263
|
+
Style/MixinUsage:
|
264
|
+
Enabled: true
|
265
|
+
|
266
|
+
Style/ModuleFunction:
|
267
|
+
Enabled: true
|
268
|
+
EnforcedStyle: forbidden
|