Update RBI files for rubocop.
Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
parent
9f9bbbcc30
commit
10a44bfc7b
@ -11,6 +11,9 @@ class Homebrew::CLI::Args
|
|||||||
sig { returns(T::Boolean) }
|
sig { returns(T::Boolean) }
|
||||||
def annotate?; end
|
def annotate?; end
|
||||||
|
|
||||||
|
sig { returns(T.nilable(String)) }
|
||||||
|
def arch; end
|
||||||
|
|
||||||
sig { returns(T::Boolean) }
|
sig { returns(T::Boolean) }
|
||||||
def cask?; end
|
def cask?; end
|
||||||
|
|
||||||
@ -65,6 +68,9 @@ class Homebrew::CLI::Args
|
|||||||
sig { returns(T::Boolean) }
|
sig { returns(T::Boolean) }
|
||||||
def n?; end
|
def n?; end
|
||||||
|
|
||||||
|
sig { returns(T.nilable(String)) }
|
||||||
|
def os; end
|
||||||
|
|
||||||
sig { returns(T::Boolean) }
|
sig { returns(T::Boolean) }
|
||||||
def skip_recommended?; end
|
def skip_recommended?; end
|
||||||
|
|
||||||
|
@ -744,6 +744,11 @@ class RuboCop::CachedData
|
|||||||
# source://rubocop//lib/rubocop/cached_data.rb#47
|
# source://rubocop//lib/rubocop/cached_data.rb#47
|
||||||
def deserialize_offenses(offenses); end
|
def deserialize_offenses(offenses); end
|
||||||
|
|
||||||
|
# @api private
|
||||||
|
#
|
||||||
|
# source://rubocop//lib/rubocop/cached_data.rb#56
|
||||||
|
def location_from_source_buffer(offense, source_buffer); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/cached_data.rb#40
|
# source://rubocop//lib/rubocop/cached_data.rb#40
|
||||||
@ -48283,12 +48288,12 @@ RuboCop::Cop::Style::Semicolon::MSG = T.let(T.unsafe(nil), String)
|
|||||||
#
|
#
|
||||||
# @example
|
# @example
|
||||||
# # bad
|
# # bad
|
||||||
# Foo.send(:bar)
|
# Foo.send(bar)
|
||||||
# quuz.send(:fred)
|
# quuz.send(fred)
|
||||||
#
|
#
|
||||||
# # good
|
# # good
|
||||||
# Foo.__send__(:bar)
|
# Foo.__send__(bar)
|
||||||
# quuz.public_send(:fred)
|
# quuz.public_send(fred)
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/cop/style/send.rb#16
|
# source://rubocop//lib/rubocop/cop/style/send.rb#16
|
||||||
class RuboCop::Cop::Style::Send < ::RuboCop::Cop::Base
|
class RuboCop::Cop::Style::Send < ::RuboCop::Cop::Base
|
||||||
@ -55814,32 +55819,32 @@ class RuboCop::LSP::Server
|
|||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/lsp/server.rb#59
|
# source://rubocop//lib/rubocop/lsp/server.rb#61
|
||||||
def configure(options); end
|
def configure(options); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/lsp/server.rb#51
|
# source://rubocop//lib/rubocop/lsp/server.rb#53
|
||||||
def format(path, text, command:); end
|
def format(path, text, command:); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/lsp/server.rb#55
|
# source://rubocop//lib/rubocop/lsp/server.rb#57
|
||||||
def offenses(path, text); end
|
def offenses(path, text); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/lsp/server.rb#32
|
# source://rubocop//lib/rubocop/lsp/server.rb#34
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/lsp/server.rb#65
|
# source://rubocop//lib/rubocop/lsp/server.rb#67
|
||||||
def stop(&block); end
|
def stop(&block); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
#
|
#
|
||||||
# source://rubocop//lib/rubocop/lsp/server.rb#47
|
# source://rubocop//lib/rubocop/lsp/server.rb#49
|
||||||
def write(response); end
|
def write(response); end
|
||||||
end
|
end
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user