repeatable 1.1.0 → 1.2.1

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.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +22 -21
  3. data/.ruby-version +1 -0
  4. data/.yardopts +1 -0
  5. data/CHANGELOG.md +24 -1
  6. data/Gemfile +3 -1
  7. data/Gemfile.lock +113 -54
  8. data/README.md +25 -5
  9. data/bin/tapioca +29 -0
  10. data/lib/repeatable/conversions.rb +2 -1
  11. data/lib/repeatable/expression/base.rb +6 -0
  12. data/lib/repeatable/expression/biweekly.rb +1 -0
  13. data/lib/repeatable/expression/date.rb +2 -0
  14. data/lib/repeatable/expression/day_in_month.rb +1 -0
  15. data/lib/repeatable/expression/difference.rb +1 -0
  16. data/lib/repeatable/expression/exact_date.rb +1 -0
  17. data/lib/repeatable/expression/intersection.rb +2 -0
  18. data/lib/repeatable/expression/range_in_year.rb +3 -0
  19. data/lib/repeatable/expression/set.rb +3 -2
  20. data/lib/repeatable/expression/union.rb +2 -0
  21. data/lib/repeatable/expression/weekday.rb +1 -0
  22. data/lib/repeatable/expression/weekday_in_month.rb +1 -0
  23. data/lib/repeatable/expression.rb +1 -0
  24. data/lib/repeatable/last_date_of_month.rb +1 -0
  25. data/lib/repeatable/parse_error.rb +1 -0
  26. data/lib/repeatable/parser.rb +1 -0
  27. data/lib/repeatable/schedule.rb +6 -0
  28. data/lib/repeatable/types.rb +1 -0
  29. data/lib/repeatable/version.rb +2 -1
  30. data/lib/repeatable.rb +1 -0
  31. data/rbi/repeatable.rbi +9 -3
  32. data/sorbet/config +2 -1
  33. data/sorbet/rbi/annotations/.gitattributes +1 -0
  34. data/sorbet/rbi/{sorbet-typed/lib/rainbow/all → annotations}/rainbow.rbi +23 -30
  35. data/sorbet/rbi/gems/.gitattributes +1 -0
  36. data/sorbet/rbi/gems/ast@2.4.3.rbi +584 -0
  37. data/sorbet/rbi/gems/benchmark@0.4.1.rbi +619 -0
  38. data/sorbet/rbi/gems/coderay@1.1.3.rbi +3426 -0
  39. data/sorbet/rbi/gems/commander@5.0.0.rbi +9 -0
  40. data/sorbet/rbi/gems/diff-lcs@1.6.2.rbi +1134 -0
  41. data/sorbet/rbi/gems/docile@1.4.1.rbi +376 -0
  42. data/sorbet/rbi/gems/erubi@1.13.1.rbi +155 -0
  43. data/sorbet/rbi/gems/highline@3.0.1.rbi +9 -0
  44. data/sorbet/rbi/gems/json@2.13.2.rbi +2087 -0
  45. data/sorbet/rbi/gems/language_server-protocol@3.17.0.5.rbi +14243 -0
  46. data/sorbet/rbi/gems/lint_roller@1.1.0.rbi +239 -0
  47. data/sorbet/rbi/gems/logger@1.7.0.rbi +963 -0
  48. data/sorbet/rbi/gems/method_source@1.1.0.rbi +304 -0
  49. data/sorbet/rbi/gems/netrc@0.11.0.rbi +158 -0
  50. data/sorbet/rbi/gems/parallel@1.27.0.rbi +291 -0
  51. data/sorbet/rbi/gems/parlour@9.1.2.rbi +3071 -0
  52. data/sorbet/rbi/gems/parser@3.3.9.0.rbi +7337 -0
  53. data/sorbet/rbi/gems/prism@1.4.0.rbi +41732 -0
  54. data/sorbet/rbi/gems/pry@0.15.2.rbi +10265 -0
  55. data/sorbet/rbi/gems/racc@1.8.1.rbi +164 -0
  56. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +402 -0
  57. data/sorbet/rbi/gems/rake@13.3.0.rbi +3031 -0
  58. data/sorbet/rbi/gems/rbi@0.3.6.rbi +6893 -0
  59. data/sorbet/rbi/gems/rbs@3.9.5.rbi +6976 -0
  60. data/sorbet/rbi/gems/regexp_parser@2.11.2.rbi +3845 -0
  61. data/sorbet/rbi/gems/rexml@3.4.3.rbi +5285 -0
  62. data/sorbet/rbi/gems/rspec-core@3.13.5.rbi +11238 -0
  63. data/sorbet/rbi/gems/rspec-expectations@3.13.5.rbi +8189 -0
  64. data/sorbet/rbi/gems/rspec-mocks@3.13.5.rbi +5350 -0
  65. data/sorbet/rbi/gems/rspec-support@3.13.5.rbi +1627 -0
  66. data/sorbet/rbi/gems/rspec@3.13.1.rbi +83 -0
  67. data/sorbet/rbi/gems/rubocop-ast@1.46.0.rbi +7734 -0
  68. data/sorbet/rbi/gems/rubocop-performance@1.25.0.rbi +9 -0
  69. data/sorbet/rbi/gems/rubocop@1.80.2.rbi +63354 -0
  70. data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1317 -0
  71. data/sorbet/rbi/gems/simplecov-html@0.13.2.rbi +225 -0
  72. data/sorbet/rbi/gems/simplecov@0.22.0.rbi +2149 -0
  73. data/sorbet/rbi/gems/simplecov_json_formatter@0.1.4.rbi +239 -0
  74. data/sorbet/rbi/gems/spoom@1.6.3.rbi +6985 -0
  75. data/sorbet/rbi/gems/standard-custom@1.0.2.rbi +8 -0
  76. data/sorbet/rbi/gems/standard-performance@1.8.0.rbi +9 -0
  77. data/sorbet/rbi/gems/standard@1.51.0.rbi +935 -0
  78. data/sorbet/rbi/gems/tapioca@0.16.11.rbi +3628 -0
  79. data/sorbet/rbi/gems/thor@1.4.0.rbi +4399 -0
  80. data/sorbet/rbi/gems/unicode-display_width@3.2.0.rbi +132 -0
  81. data/sorbet/rbi/gems/unicode-emoji@4.1.0.rbi +251 -0
  82. data/sorbet/rbi/gems/yard-sorbet@0.9.0.rbi +435 -0
  83. data/sorbet/rbi/gems/yard@0.9.37.rbi +18378 -0
  84. data/sorbet/tapioca/config.yml +13 -0
  85. data/sorbet/tapioca/require.rb +4 -0
  86. metadata +59 -39
  87. data/sorbet/rbi/gems/ast.rbi +0 -49
  88. data/sorbet/rbi/gems/coderay.rbi +0 -285
  89. data/sorbet/rbi/gems/commander.rbi +0 -197
  90. data/sorbet/rbi/gems/docile.rbi +0 -36
  91. data/sorbet/rbi/gems/highline.rbi +0 -577
  92. data/sorbet/rbi/gems/method_source.rbi +0 -64
  93. data/sorbet/rbi/gems/parallel.rbi +0 -83
  94. data/sorbet/rbi/gems/parlour.rbi +0 -840
  95. data/sorbet/rbi/gems/parser.rbi +0 -1950
  96. data/sorbet/rbi/gems/pry.rbi +0 -1898
  97. data/sorbet/rbi/gems/rainbow.rbi +0 -118
  98. data/sorbet/rbi/gems/rake.rbi +0 -646
  99. data/sorbet/rbi/gems/regexp_parser.rbi +0 -926
  100. data/sorbet/rbi/gems/repeatable.rbi +0 -13
  101. data/sorbet/rbi/gems/rexml.rbi +0 -583
  102. data/sorbet/rbi/gems/rspec-core.rbi +0 -1919
  103. data/sorbet/rbi/gems/rspec-expectations.rbi +0 -1150
  104. data/sorbet/rbi/gems/rspec-mocks.rbi +0 -1100
  105. data/sorbet/rbi/gems/rspec-support.rbi +0 -280
  106. data/sorbet/rbi/gems/rspec.rbi +0 -15
  107. data/sorbet/rbi/gems/rubocop-ast.rbi +0 -1356
  108. data/sorbet/rbi/gems/rubocop-performance.rbi +0 -487
  109. data/sorbet/rbi/gems/rubocop.rbi +0 -7923
  110. data/sorbet/rbi/gems/ruby-progressbar.rbi +0 -304
  111. data/sorbet/rbi/gems/simplecov-html.rbi +0 -35
  112. data/sorbet/rbi/gems/simplecov.rbi +0 -419
  113. data/sorbet/rbi/gems/simplecov_json_formatter.rbi +0 -47
  114. data/sorbet/rbi/gems/standard.rbi +0 -130
  115. data/sorbet/rbi/gems/unicode-display_width.rbi +0 -20
  116. data/sorbet/rbi/hidden-definitions/errors.txt +0 -4273
  117. data/sorbet/rbi/hidden-definitions/hidden.rbi +0 -9013
  118. data/sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi +0 -645
  119. data/sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi +0 -24
  120. data/sorbet/rbi/sorbet-typed/lib/rubocop/>=1.8/rubocop.rbi +0 -12
  121. data/sorbet/rbi/sorbet-typed/lib/rubocop-performance/~>1.6/rubocop-performance.rbi +0 -149
@@ -0,0 +1,935 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `standard` gem.
5
+ # Please instead update this file by running `bin/tapioca gem standard`.
6
+
7
+
8
+ # source://standard//lib/standard/rubocop/ext.rb#1
9
+ module RuboCop; end
10
+
11
+ # source://standard//lib/standard/rubocop/ext.rb#17
12
+ class RuboCop::CommentConfig
13
+ # @return [CommentConfig] a new instance of CommentConfig
14
+ #
15
+ # source://standard//lib/standard/rubocop/ext.rb#20
16
+ def initialize(processed_source); end
17
+
18
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#63
19
+ def comment_only_line?(line_number); end
20
+
21
+ # source://rubocop-ast/1.46.0/lib/rubocop/ast/utilities/simple_forwardable.rb#19
22
+ def config(*_arg0, **_arg1, &_arg2); end
23
+
24
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#51
25
+ def cop_disabled_line_ranges; end
26
+
27
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#39
28
+ def cop_enabled_at_line?(cop, line_number); end
29
+
30
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#47
31
+ def cop_opted_in?(cop); end
32
+
33
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#55
34
+ def extra_enabled_comments; end
35
+
36
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#30
37
+ def processed_source; end
38
+
39
+ # source://rubocop-ast/1.46.0/lib/rubocop/ast/utilities/simple_forwardable.rb#19
40
+ def registry(*_arg0, **_arg1, &_arg2); end
41
+
42
+ private
43
+
44
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#96
45
+ def analyze; end
46
+
47
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#124
48
+ def analyze_cop(analysis, directive); end
49
+
50
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#144
51
+ def analyze_disabled(analysis, directive); end
52
+
53
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#155
54
+ def analyze_rest(analysis, directive); end
55
+
56
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#135
57
+ def analyze_single_line(analysis, directive); end
58
+
59
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#164
60
+ def cop_line_ranges(analysis); end
61
+
62
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#170
63
+ def each_directive; end
64
+
65
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#69
66
+ def extra_enabled_comments_with_names(extras:, names:); end
67
+
68
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#190
69
+ def handle_enable_all(directive, names, extras); end
70
+
71
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#204
72
+ def handle_switch(directive, names, extras); end
73
+
74
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#115
75
+ def inject_disabled_cops_directives(analyses); end
76
+
77
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#183
78
+ def non_comment_token_line_numbers; end
79
+
80
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#34
81
+ def old_initialize(processed_source); end
82
+
83
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#83
84
+ def opt_in_cops; end
85
+
86
+ # source://rubocop/1.80.2/lib/rubocop/comment_config.rb#179
87
+ def qualified_cop_name(cop_name); end
88
+ end
89
+
90
+ module RuboCop::Cop; end
91
+ module RuboCop::Cop::Lint; end
92
+
93
+ # source://standard//lib/standard/rubocop/ext.rb#2
94
+ class RuboCop::Cop::Lint::AssignmentInCondition < ::RuboCop::Cop::Base
95
+ # source://standard//lib/standard/rubocop/ext.rb#4
96
+ def message(_); end
97
+
98
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#55
99
+ def on_if(node); end
100
+
101
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#55
102
+ def on_until(node); end
103
+
104
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#55
105
+ def on_while(node); end
106
+
107
+ private
108
+
109
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#80
110
+ def allowed_construct?(asgn_node); end
111
+
112
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#84
113
+ def conditional_assignment?(asgn_node); end
114
+
115
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#88
116
+ def skip_children?(asgn_node); end
117
+
118
+ # source://rubocop/1.80.2/lib/rubocop/cop/lint/assignment_in_condition.rb#94
119
+ def traverse_node(node, &block); end
120
+ end
121
+
122
+ # source://standard//lib/standard/rubocop/ext.rb#9
123
+ class RuboCop::DirectiveComment
124
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#46
125
+ def initialize(comment, cop_registry = T.unsafe(nil)); end
126
+
127
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#115
128
+ def all_cops?; end
129
+
130
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#44
131
+ def comment; end
132
+
133
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#120
134
+ def cop_names; end
135
+
136
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#44
137
+ def cop_registry; end
138
+
139
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#44
140
+ def cops; end
141
+
142
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#131
143
+ def department_names; end
144
+
145
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#145
146
+ def directive_count; end
147
+
148
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#95
149
+ def disabled?; end
150
+
151
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#110
152
+ def disabled_all?; end
153
+
154
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#100
155
+ def enabled?; end
156
+
157
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#105
158
+ def enabled_all?; end
159
+
160
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#136
161
+ def in_directive_department?(cop); end
162
+
163
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#150
164
+ def line_number; end
165
+
166
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#59
167
+ def malformed?; end
168
+
169
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#77
170
+ def match?(cop_names); end
171
+
172
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#90
173
+ def match_captures; end
174
+
175
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#67
176
+ def missing_cop_name?; end
177
+
178
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#44
179
+ def mode; end
180
+
181
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#141
182
+ def overridden_by_department?(cop); end
183
+
184
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#81
185
+ def range; end
186
+
187
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#125
188
+ def raw_cop_names; end
189
+
190
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#72
191
+ def single_line?; end
192
+
193
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#54
194
+ def start_with_marker?; end
195
+
196
+ private
197
+
198
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#167
199
+ def all_cop_names; end
200
+
201
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#171
202
+ def cop_names_for_department(department); end
203
+
204
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#163
205
+ def department?(name); end
206
+
207
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#176
208
+ def exclude_lint_department_cops(cops); end
209
+
210
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#156
211
+ def parsed_cop_names; end
212
+
213
+ class << self
214
+ # source://rubocop/1.80.2/lib/rubocop/directive_comment.rb#40
215
+ def before_comment(line); end
216
+ end
217
+ end
218
+
219
+ # source://standard//lib/standard/rubocop/ext.rb#11
220
+ RuboCop::DirectiveComment::DIRECTIVE_COMMENT_REGEXP = T.let(T.unsafe(nil), Regexp)
221
+
222
+ # source://standard//lib/standard.rb#4
223
+ module Standard; end
224
+
225
+ # source://standard//lib/standard/builds_config.rb#8
226
+ class Standard::BuildsConfig
227
+ # @return [BuildsConfig] a new instance of BuildsConfig
228
+ #
229
+ # source://standard//lib/standard/builds_config.rb#9
230
+ def initialize; end
231
+
232
+ # source://standard//lib/standard/builds_config.rb#16
233
+ def call(argv, search_path = T.unsafe(nil)); end
234
+ end
235
+
236
+ # source://standard//lib/standard/cli.rb#5
237
+ class Standard::Cli
238
+ # @return [Cli] a new instance of Cli
239
+ #
240
+ # source://standard//lib/standard/cli.rb#6
241
+ def initialize(argv); end
242
+
243
+ # source://standard//lib/standard/cli.rb#12
244
+ def run; end
245
+ end
246
+
247
+ # source://standard//lib/standard/builds_config.rb#6
248
+ class Standard::Config < ::Struct
249
+ # Returns the value of attribute paths
250
+ #
251
+ # @return [Object] the current value of paths
252
+ def paths; end
253
+
254
+ # Sets the attribute paths
255
+ #
256
+ # @param value [Object] the value to set the attribute paths to.
257
+ # @return [Object] the newly set value
258
+ def paths=(_); end
259
+
260
+ # Returns the value of attribute rubocop_config_store
261
+ #
262
+ # @return [Object] the current value of rubocop_config_store
263
+ def rubocop_config_store; end
264
+
265
+ # Sets the attribute rubocop_config_store
266
+ #
267
+ # @param value [Object] the value to set the attribute rubocop_config_store to.
268
+ # @return [Object] the newly set value
269
+ def rubocop_config_store=(_); end
270
+
271
+ # Returns the value of attribute rubocop_options
272
+ #
273
+ # @return [Object] the current value of rubocop_options
274
+ def rubocop_options; end
275
+
276
+ # Sets the attribute rubocop_options
277
+ #
278
+ # @param value [Object] the value to set the attribute rubocop_options to.
279
+ # @return [Object] the newly set value
280
+ def rubocop_options=(_); end
281
+
282
+ # Returns the value of attribute runner
283
+ #
284
+ # @return [Object] the current value of runner
285
+ def runner; end
286
+
287
+ # Sets the attribute runner
288
+ #
289
+ # @param value [Object] the value to set the attribute runner to.
290
+ # @return [Object] the newly set value
291
+ def runner=(_); end
292
+
293
+ class << self
294
+ def [](*_arg0); end
295
+ def inspect; end
296
+ def keyword_init?; end
297
+ def members; end
298
+ def new(*_arg0); end
299
+ end
300
+ end
301
+
302
+ # source://standard//lib/standard/creates_config_store/assigns_rubocop_yaml.rb#3
303
+ class Standard::CreatesConfigStore
304
+ # @return [CreatesConfigStore] a new instance of CreatesConfigStore
305
+ #
306
+ # source://standard//lib/standard/creates_config_store.rb#10
307
+ def initialize; end
308
+
309
+ # source://standard//lib/standard/creates_config_store.rb#18
310
+ def call(standard_config); end
311
+ end
312
+
313
+ # source://standard//lib/standard/creates_config_store/assigns_rubocop_yaml.rb#4
314
+ class Standard::CreatesConfigStore::AssignsRubocopYaml
315
+ # source://standard//lib/standard/creates_config_store/assigns_rubocop_yaml.rb#5
316
+ def call(config_store, standard_config); end
317
+ end
318
+
319
+ # source://standard//lib/standard/creates_config_store/configures_ignored_paths.rb#2
320
+ class Standard::CreatesConfigStore::ConfiguresIgnoredPaths
321
+ # source://standard//lib/standard/creates_config_store/configures_ignored_paths.rb#14
322
+ def call(options_config, standard_config); end
323
+
324
+ private
325
+
326
+ # @return [Boolean]
327
+ #
328
+ # source://standard//lib/standard/creates_config_store/configures_ignored_paths.rb#41
329
+ def absolute?(path); end
330
+
331
+ # source://standard//lib/standard/creates_config_store/configures_ignored_paths.rb#33
332
+ def absolutify(config_root, path); end
333
+
334
+ # source://standard//lib/standard/creates_config_store/configures_ignored_paths.rb#28
335
+ def ignored_patterns(standard_config); end
336
+ end
337
+
338
+ # source://standard//lib/standard/creates_config_store/configures_ignored_paths.rb#3
339
+ Standard::CreatesConfigStore::ConfiguresIgnoredPaths::DEFAULT_IGNORES = T.let(T.unsafe(nil), Array)
340
+
341
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#5
342
+ class Standard::CreatesConfigStore::MergesUserConfigExtensions
343
+ # @return [MergesUserConfigExtensions] a new instance of MergesUserConfigExtensions
344
+ #
345
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#24
346
+ def initialize; end
347
+
348
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#28
349
+ def call(options_config, standard_config); end
350
+ end
351
+
352
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#6
353
+ class Standard::CreatesConfigStore::MergesUserConfigExtensions::ExtendConfigPlugin < ::LintRoller::Plugin
354
+ # @return [ExtendConfigPlugin] a new instance of ExtendConfigPlugin
355
+ #
356
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#7
357
+ def initialize(path); end
358
+
359
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#11
360
+ def about; end
361
+
362
+ # source://standard//lib/standard/creates_config_store/merges_user_config_extensions.rb#15
363
+ def rules(context); end
364
+ end
365
+
366
+ # source://standard//lib/standard/creates_config_store/sets_target_ruby_version.rb#2
367
+ class Standard::CreatesConfigStore::SetsTargetRubyVersion
368
+ # source://standard//lib/standard/creates_config_store/sets_target_ruby_version.rb#12
369
+ def call(options_config, standard_config); end
370
+
371
+ private
372
+
373
+ # source://standard//lib/standard/creates_config_store/sets_target_ruby_version.rb#20
374
+ def min_target_ruby_version_supported(desired_target_ruby_version); end
375
+
376
+ # source://standard//lib/standard/creates_config_store/sets_target_ruby_version.rb#31
377
+ def normalize_version(version); end
378
+ end
379
+
380
+ # This is minimum version that Rubocop can parse, not the minimum
381
+ # version it can run on (e.g. TargetRubyVersion). See the following
382
+ # for more details:
383
+ #
384
+ # https://docs.rubocop.org/rubocop/configuration.html#setting-the-target-ruby-version
385
+ #
386
+ # https://github.com/rubocop/rubocop/blob/master/lib/rubocop/target_ruby.rb
387
+ #
388
+ # source://standard//lib/standard/creates_config_store/sets_target_ruby_version.rb#10
389
+ Standard::CreatesConfigStore::SetsTargetRubyVersion::MIN_TARGET_RUBY_VERSION = T.let(T.unsafe(nil), String)
390
+
391
+ # source://standard//lib/standard/file_finder.rb#4
392
+ class Standard::FileFinder
393
+ # source://standard//lib/standard/file_finder.rb#5
394
+ def call(name, search_path); end
395
+ end
396
+
397
+ # source://standard//lib/standard/formatter.rb#5
398
+ class Standard::Formatter < ::RuboCop::Formatter::BaseFormatter
399
+ # source://standard//lib/standard/formatter.rb#18
400
+ def file_finished(file, offenses); end
401
+
402
+ # source://standard//lib/standard/formatter.rb#37
403
+ def finished(_inspected_files); end
404
+
405
+ # source://standard//lib/standard/formatter.rb#10
406
+ def started(_target_files); end
407
+
408
+ # source://standard//lib/standard/formatter.rb#30
409
+ def track_stats(offenses); end
410
+
411
+ private
412
+
413
+ # source://standard//lib/standard/formatter.rb#106
414
+ def determine_run_mode; end
415
+
416
+ # source://standard//lib/standard/formatter.rb#114
417
+ def fixable_error_message(command); end
418
+
419
+ # source://standard//lib/standard/formatter.rb#92
420
+ def path_to(file); end
421
+
422
+ # source://standard//lib/standard/formatter.rb#96
423
+ def potential_fix_mode; end
424
+
425
+ # source://standard//lib/standard/formatter.rb#52
426
+ def print_fix_suggestion; end
427
+
428
+ # source://standard//lib/standard/formatter.rb#44
429
+ def print_header_once; end
430
+
431
+ # source://standard//lib/standard/formatter.rb#82
432
+ def print_todo_congratulations; end
433
+
434
+ # source://standard//lib/standard/formatter.rb#66
435
+ def print_todo_warning; end
436
+ end
437
+
438
+ # source://standard//lib/standard/formatter.rb#6
439
+ Standard::Formatter::STANDARD_GREETING = T.let(T.unsafe(nil), String)
440
+
441
+ # source://standard//lib/standard/loads_runner.rb#9
442
+ class Standard::LoadsRunner
443
+ # source://standard//lib/standard/loads_runner.rb#19
444
+ def call(command); end
445
+ end
446
+
447
+ # source://standard//lib/standard/loads_runner.rb#10
448
+ Standard::LoadsRunner::RUNNERS = T.let(T.unsafe(nil), Hash)
449
+
450
+ # source://standard//lib/standard/loads_yaml_config.rb#7
451
+ class Standard::LoadsYamlConfig
452
+ # source://standard//lib/standard/loads_yaml_config.rb#8
453
+ def call(standard_yaml_path, todo_yaml_path); end
454
+
455
+ private
456
+
457
+ # source://standard//lib/standard/loads_yaml_config.rb#57
458
+ def arrayify(object); end
459
+
460
+ # source://standard//lib/standard/loads_yaml_config.rb#25
461
+ def construct_config(yaml_path, standard_yaml, todo_path, todo_yaml); end
462
+
463
+ # source://standard//lib/standard/loads_yaml_config.rb#47
464
+ def expand_ignore_config(ignore_config); end
465
+
466
+ # source://standard//lib/standard/loads_yaml_config.rb#17
467
+ def load_standard_yaml(yaml_path); end
468
+
469
+ # source://standard//lib/standard/loads_yaml_config.rb#41
470
+ def normalized_ruby_version(version); end
471
+ end
472
+
473
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#2
474
+ module Standard::Lsp; end
475
+
476
+ # source://standard//lib/standard/lsp/diagnostic.rb#3
477
+ class Standard::Lsp::Diagnostic
478
+ # @return [Diagnostic] a new instance of Diagnostic
479
+ #
480
+ # source://standard//lib/standard/lsp/diagnostic.rb#16
481
+ def initialize(document_encoding, offense, uri, cop_class); end
482
+
483
+ # source://standard//lib/standard/lsp/diagnostic.rb#23
484
+ def to_lsp_code_actions; end
485
+
486
+ # source://standard//lib/standard/lsp/diagnostic.rb#32
487
+ def to_lsp_diagnostic(config); end
488
+
489
+ private
490
+
491
+ # source://standard//lib/standard/lsp/diagnostic.rb#77
492
+ def autocorrect_action; end
493
+
494
+ # source://standard//lib/standard/lsp/diagnostic.rb#69
495
+ def code_description(config); end
496
+
497
+ # @return [Boolean]
498
+ #
499
+ # source://standard//lib/standard/lsp/diagnostic.rb#163
500
+ def correctable?; end
501
+
502
+ # source://standard//lib/standard/lsp/diagnostic.rb#108
503
+ def disable_line_action; end
504
+
505
+ # source://standard//lib/standard/lsp/diagnostic.rb#167
506
+ def ensure_uri_scheme(uri); end
507
+
508
+ # source://standard//lib/standard/lsp/diagnostic.rb#148
509
+ def length_of_line(line); end
510
+
511
+ # source://standard//lib/standard/lsp/diagnostic.rb#126
512
+ def line_disable_comment; end
513
+
514
+ # source://standard//lib/standard/lsp/diagnostic.rb#59
515
+ def message; end
516
+
517
+ # source://standard//lib/standard/lsp/diagnostic.rb#96
518
+ def offense_replacements; end
519
+
520
+ # source://standard//lib/standard/lsp/diagnostic.rb#65
521
+ def severity; end
522
+ end
523
+
524
+ # source://standard//lib/standard/lsp/diagnostic.rb#4
525
+ Standard::Lsp::Diagnostic::Constant = LanguageServer::Protocol::Constant
526
+
527
+ # source://standard//lib/standard/lsp/diagnostic.rb#5
528
+ Standard::Lsp::Diagnostic::Interface = LanguageServer::Protocol::Interface
529
+
530
+ # source://standard//lib/standard/lsp/diagnostic.rb#7
531
+ Standard::Lsp::Diagnostic::RUBOCOP_TO_LSP_SEVERITY = T.let(T.unsafe(nil), Hash)
532
+
533
+ # source://standard//lib/standard/lsp/kills_server.rb#3
534
+ class Standard::Lsp::KillsServer
535
+ # source://standard//lib/standard/lsp/kills_server.rb#4
536
+ def call(&blk); end
537
+ end
538
+
539
+ # source://standard//lib/standard/lsp/logger.rb#3
540
+ class Standard::Lsp::Logger
541
+ # @return [Logger] a new instance of Logger
542
+ #
543
+ # source://standard//lib/standard/lsp/logger.rb#4
544
+ def initialize(prefix: T.unsafe(nil)); end
545
+
546
+ # source://standard//lib/standard/lsp/logger.rb#9
547
+ def puts(message); end
548
+
549
+ # source://standard//lib/standard/lsp/logger.rb#13
550
+ def puts_once(message); end
551
+ end
552
+
553
+ # source://standard//lib/standard/lsp/server.rb#8
554
+ Standard::Lsp::Proto = LanguageServer::Protocol
555
+
556
+ # source://standard//lib/standard/lsp/routes.rb#5
557
+ class Standard::Lsp::Routes
558
+ # @return [Routes] a new instance of Routes
559
+ #
560
+ # source://standard//lib/standard/lsp/routes.rb#6
561
+ def initialize(writer, logger, standardizer); end
562
+
563
+ # source://standard//lib/standard/lsp/routes.rb#19
564
+ def for(name); end
565
+
566
+ # source://standard//lib/standard/lsp/routes.rb#26
567
+ def handle_initialize(request); end
568
+
569
+ # source://standard//lib/standard/lsp/routes.rb#38
570
+ def handle_initialized(request); end
571
+
572
+ # source://standard//lib/standard/lsp/routes.rb#129
573
+ def handle_method_missing(request); end
574
+
575
+ # source://standard//lib/standard/lsp/routes.rb#42
576
+ def handle_shutdown(request); end
577
+
578
+ # source://standard//lib/standard/lsp/routes.rb#121
579
+ def handle_unsupported_method(request, method = T.unsafe(nil)); end
580
+
581
+ private
582
+
583
+ # source://standard//lib/standard/lsp/routes.rb#162
584
+ def diagnostic(file_uri, text); end
585
+
586
+ # source://standard//lib/standard/lsp/routes.rb#141
587
+ def format_file(file_uri); end
588
+
589
+ # source://standard//lib/standard/lsp/routes.rb#137
590
+ def uri_to_path(uri); end
591
+
592
+ class << self
593
+ # source://standard//lib/standard/lsp/routes.rb#15
594
+ def handle(name, &block); end
595
+ end
596
+ end
597
+
598
+ # source://standard//lib/standard/lsp/routes.rb#75
599
+ Standard::Lsp::Routes::CONFIGURATION_FILE_PATTERNS = T.let(T.unsafe(nil), Array)
600
+
601
+ # source://standard//lib/standard/lsp/server.rb#9
602
+ Standard::Lsp::SEV = LanguageServer::Protocol::Constant::DiagnosticSeverity
603
+
604
+ # source://standard//lib/standard/lsp/server.rb#11
605
+ class Standard::Lsp::Server
606
+ # @return [Server] a new instance of Server
607
+ #
608
+ # source://standard//lib/standard/lsp/server.rb#12
609
+ def initialize(config); end
610
+
611
+ # source://standard//lib/standard/lsp/server.rb#20
612
+ def start; end
613
+ end
614
+
615
+ # source://standard//lib/standard/lsp/standardizer.rb#6
616
+ class Standard::Lsp::Standardizer
617
+ # @return [Standardizer] a new instance of Standardizer
618
+ #
619
+ # source://standard//lib/standard/lsp/standardizer.rb#7
620
+ def initialize(config); end
621
+
622
+ # source://standard//lib/standard/lsp/standardizer.rb#15
623
+ def format(path, text); end
624
+
625
+ # source://standard//lib/standard/lsp/standardizer.rb#20
626
+ def offenses(path, text, document_encoding = T.unsafe(nil)); end
627
+ end
628
+
629
+ # Originally lifted from:
630
+ # https://github.com/Shopify/ruby-lsp/blob/8d4c17efce4e8ecc8e7c557ab2981db6b22c0b6d/lib/ruby_lsp/requests/support/rubocop_runner.rb#L20
631
+ #
632
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#5
633
+ class Standard::Lsp::StdinRubocopRunner < ::RuboCop::Runner
634
+ # @return [StdinRubocopRunner] a new instance of StdinRubocopRunner
635
+ #
636
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#21
637
+ def initialize(config); end
638
+
639
+ # Returns the value of attribute config_for_working_directory.
640
+ #
641
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#10
642
+ def config_for_working_directory; end
643
+
644
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#60
645
+ def formatted_source; end
646
+
647
+ # Returns the value of attribute offenses.
648
+ #
649
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#8
650
+ def offenses; end
651
+
652
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#35
653
+ def run(path, contents); end
654
+
655
+ private
656
+
657
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#66
658
+ def file_finished(_file, offenses); end
659
+ end
660
+
661
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#6
662
+ class Standard::Lsp::StdinRubocopRunner::ConfigurationError < ::StandardError; end
663
+
664
+ # source://standard//lib/standard/lsp/stdin_rubocop_runner.rb#12
665
+ Standard::Lsp::StdinRubocopRunner::DEFAULT_RUBOCOP_OPTIONS = T.let(T.unsafe(nil), Hash)
666
+
667
+ # source://standard//lib/standard/merges_settings.rb#4
668
+ class Standard::MergesSettings
669
+ # source://standard//lib/standard/merges_settings.rb#7
670
+ def call(argv, standard_yaml); end
671
+
672
+ private
673
+
674
+ # source://standard//lib/standard/merges_settings.rb#42
675
+ def determine_command(argv); end
676
+
677
+ # source://standard//lib/standard/merges_settings.rb#58
678
+ def merge(standard_yaml, standard_cli_flags, rubocop_cli_flags); end
679
+
680
+ # source://standard//lib/standard/merges_settings.rb#27
681
+ def parse_standard_argv(argv); end
682
+
683
+ # source://standard//lib/standard/merges_settings.rb#21
684
+ def separate_argv(argv); end
685
+
686
+ # source://standard//lib/standard/merges_settings.rb#69
687
+ def without_banned(rubocop_cli_flags); end
688
+ end
689
+
690
+ # source://standard//lib/standard/merges_settings.rb#5
691
+ class Standard::MergesSettings::Settings < ::Struct
692
+ # Returns the value of attribute options
693
+ #
694
+ # @return [Object] the current value of options
695
+ def options; end
696
+
697
+ # Sets the attribute options
698
+ #
699
+ # @param value [Object] the value to set the attribute options to.
700
+ # @return [Object] the newly set value
701
+ def options=(_); end
702
+
703
+ # Returns the value of attribute paths
704
+ #
705
+ # @return [Object] the current value of paths
706
+ def paths; end
707
+
708
+ # Sets the attribute paths
709
+ #
710
+ # @param value [Object] the value to set the attribute paths to.
711
+ # @return [Object] the newly set value
712
+ def paths=(_); end
713
+
714
+ # Returns the value of attribute runner
715
+ #
716
+ # @return [Object] the current value of runner
717
+ def runner; end
718
+
719
+ # Sets the attribute runner
720
+ #
721
+ # @param value [Object] the value to set the attribute runner to.
722
+ # @return [Object] the newly set value
723
+ def runner=(_); end
724
+
725
+ class << self
726
+ def [](*_arg0); end
727
+ def inspect; end
728
+ def keyword_init?; end
729
+ def members; end
730
+ def new(*_arg0); end
731
+ end
732
+ end
733
+
734
+ # source://standard//lib/standard/plugin.rb#2
735
+ module Standard::Plugin; end
736
+
737
+ # source://standard//lib/standard/plugin/combines_plugin_configs.rb#3
738
+ class Standard::Plugin::CombinesPluginConfigs
739
+ # @return [CombinesPluginConfigs] a new instance of CombinesPluginConfigs
740
+ #
741
+ # source://standard//lib/standard/plugin/combines_plugin_configs.rb#4
742
+ def initialize; end
743
+
744
+ # source://standard//lib/standard/plugin/combines_plugin_configs.rb#9
745
+ def call(options_config, standard_config); end
746
+ end
747
+
748
+ # source://standard//lib/standard/plugin/creates_runner_context.rb#3
749
+ class Standard::Plugin::CreatesRunnerContext
750
+ # source://standard//lib/standard/plugin/creates_runner_context.rb#4
751
+ def call(standard_config); end
752
+ end
753
+
754
+ # source://standard//lib/standard/plugin/determines_class_constant.rb#3
755
+ class Standard::Plugin::DeterminesClassConstant
756
+ # source://standard//lib/standard/plugin/determines_class_constant.rb#4
757
+ def call(plugin_name, user_config); end
758
+
759
+ private
760
+
761
+ # source://standard//lib/standard/plugin/determines_class_constant.rb#41
762
+ def require_plugin(require_path); end
763
+ end
764
+
765
+ # source://standard//lib/standard/plugin/initializes_plugins.rb#3
766
+ class Standard::Plugin::InitializesPlugins
767
+ # @return [InitializesPlugins] a new instance of InitializesPlugins
768
+ #
769
+ # source://standard//lib/standard/plugin/initializes_plugins.rb#4
770
+ def initialize; end
771
+
772
+ # source://standard//lib/standard/plugin/initializes_plugins.rb#9
773
+ def call(plugins); end
774
+ end
775
+
776
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#3
777
+ class Standard::Plugin::MergesPluginsIntoRubocopConfig
778
+ # @return [MergesPluginsIntoRubocopConfig] a new instance of MergesPluginsIntoRubocopConfig
779
+ #
780
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#24
781
+ def initialize; end
782
+
783
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#28
784
+ def call(options_config, standard_config, plugins, permit_merging:); end
785
+
786
+ private
787
+
788
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#126
789
+ def all_cop_keys_previously_configured_by_plugins(options_config, permit_merging:); end
790
+
791
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#152
792
+ def blank_rubocop_config(example_config); end
793
+
794
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#37
795
+ def combine_rubocop_configs(options_config, runner_context, plugins, permit_merging:); end
796
+
797
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#56
798
+ def config_for_plugin(plugin, runner_context); end
799
+
800
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#96
801
+ def delete_already_configured_keys!(configured_keys, next_config, dont_delete_keys: T.unsafe(nil)); end
802
+
803
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#156
804
+ def except(hash_or_config, keys); end
805
+
806
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#134
807
+ def fake_out_rubocop_default_configuration(options_config); end
808
+
809
+ # Always deletes nil entries, always overwrites arrays
810
+ # This is a simplified version of rubocop's ConfigLoader#merge:
811
+ # https://github.com/rubocop/rubocop/blob/v1.48.1/lib/rubocop/config_loader_resolver.rb#L98
812
+ #
813
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#163
814
+ def merge(old_hash, new_hash); end
815
+
816
+ # This is how we ensure "first-in wins": plugins can override AllCops settings that are
817
+ # set by RuboCop's default configuration, but once a plugin sets an AllCop setting, they
818
+ # have exclusive first-in-wins rights to that setting.
819
+ #
820
+ # The one exception to this are array fields, because we don't want to
821
+ # overwrite the AllCops defaults but rather munge the arrays (`existing |
822
+ # new`) to allow plugins to add to the array, for example Include and
823
+ # Exclude paths and patterns.
824
+ #
825
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#77
826
+ def merge_all_cop_settings(existing_all_cops, new_all_cops, already_configured_keys); end
827
+
828
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#104
829
+ def merge_config_into_all_cops!(options_config, plugin_config); end
830
+
831
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#110
832
+ def merge_config_into_standard!(options_config, plugin_config, permit_merging:); end
833
+
834
+ # Avoid a warning that would otherwise be emitted by any plugin that set TargetRailsVersion
835
+ # because it's not a default AllCops key specified in RuboCop's embedded default config.
836
+ #
837
+ # See: https://github.com/rubocop/rubocop/pull/11833
838
+ #
839
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#146
840
+ def set_target_rails_version_on_all_cops_because_its_technically_not_allowed!(options_config); end
841
+ end
842
+
843
+ # AllCops keys that standard does not allow to be set by plugins
844
+ #
845
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#10
846
+ Standard::Plugin::MergesPluginsIntoRubocopConfig::DISALLOWED_ALLCOPS_KEYS = T.let(T.unsafe(nil), Array)
847
+
848
+ # Blank configuration object to merge plugins into, with only the following spared:
849
+ # - AllCops keys set to avoid warnings about unknown properties
850
+ # - Lint/Syntax must be set to avoid a nil error when verifying inherited configs
851
+ #
852
+ # source://standard//lib/standard/plugin/merges_plugins_into_rubocop_config.rb#7
853
+ Standard::Plugin::MergesPluginsIntoRubocopConfig::MANDATORY_RUBOCOP_CONFIG_KEYS = T.let(T.unsafe(nil), Array)
854
+
855
+ # source://standard//lib/standard/plugin/standardizes_configured_plugins.rb#3
856
+ class Standard::Plugin::StandardizesConfiguredPlugins
857
+ # source://standard//lib/standard/plugin/standardizes_configured_plugins.rb#19
858
+ def call(plugins); end
859
+
860
+ private
861
+
862
+ # source://standard//lib/standard/plugin/standardizes_configured_plugins.rb#25
863
+ def normalize_config_shape(plugins); end
864
+ end
865
+
866
+ # source://standard//lib/standard/plugin/standardizes_configured_plugins.rb#10
867
+ Standard::Plugin::StandardizesConfiguredPlugins::BUILT_INS = T.let(T.unsafe(nil), Array)
868
+
869
+ # source://standard//lib/standard/plugin/standardizes_configured_plugins.rb#4
870
+ Standard::Plugin::StandardizesConfiguredPlugins::DEFAULT_PLUGIN_CONFIG = T.let(T.unsafe(nil), Hash)
871
+
872
+ # source://standard//lib/standard/resolves_yaml_option.rb#4
873
+ class Standard::ResolvesYamlOption
874
+ # source://standard//lib/standard/resolves_yaml_option.rb#5
875
+ def call(argv, search_path, option_name, default_file); end
876
+
877
+ private
878
+
879
+ # source://standard//lib/standard/resolves_yaml_option.rb#22
880
+ def argv_value_for(argv, option_name); end
881
+
882
+ # source://standard//lib/standard/resolves_yaml_option.rb#11
883
+ def search_argv(argv, option_name); end
884
+ end
885
+
886
+ # source://standard//lib/standard/runners/rubocop.rb#4
887
+ module Standard::Runners; end
888
+
889
+ # source://standard//lib/standard/runners/genignore.rb#7
890
+ class Standard::Runners::Genignore
891
+ # source://standard//lib/standard/runners/genignore.rb#8
892
+ def call(config); end
893
+ end
894
+
895
+ # source://standard//lib/standard/runners/help.rb#5
896
+ class Standard::Runners::Help
897
+ # source://standard//lib/standard/runners/help.rb#6
898
+ def call(config); end
899
+ end
900
+
901
+ # source://standard//lib/standard/runners/lsp.rb#5
902
+ class Standard::Runners::Lsp
903
+ # source://standard//lib/standard/runners/lsp.rb#6
904
+ def call(config); end
905
+ end
906
+
907
+ # source://standard//lib/standard/runners/rubocop.rb#5
908
+ class Standard::Runners::Rubocop
909
+ # source://standard//lib/standard/runners/rubocop.rb#6
910
+ def call(config); end
911
+
912
+ private
913
+
914
+ # This is a workaround for an issue with how `parallel` and `stdin`
915
+ # interact when invoked in this way. See:
916
+ # https://github.com/standardrb/standard/issues/536
917
+ #
918
+ # source://standard//lib/standard/runners/rubocop.rb#23
919
+ def without_parallelizing_in_stdin_mode(options); end
920
+ end
921
+
922
+ # source://standard//lib/standard/runners/verbose_version.rb#5
923
+ class Standard::Runners::VerboseVersion
924
+ # source://standard//lib/standard/runners/verbose_version.rb#6
925
+ def call(config); end
926
+ end
927
+
928
+ # source://standard//lib/standard/runners/version.rb#3
929
+ class Standard::Runners::Version
930
+ # source://standard//lib/standard/runners/version.rb#4
931
+ def call(config); end
932
+ end
933
+
934
+ # source://standard//lib/standard/version.rb#2
935
+ Standard::VERSION = T.let(T.unsafe(nil), Gem::Version)