Merge pull request #17127 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-1.63.3
build(deps-dev): bump rubocop from 1.63.2 to 1.63.3 in /Library/Homebrew
This commit is contained in:
commit
a49fc9d558
@ -76,7 +76,7 @@ GEM
|
|||||||
rspec-support (3.13.1)
|
rspec-support (3.13.1)
|
||||||
rspec_junit_formatter (0.6.0)
|
rspec_junit_formatter (0.6.0)
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
rubocop (1.63.2)
|
rubocop (1.63.3)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (>= 3.17.0)
|
language_server-protocol (>= 3.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
|
|||||||
@ -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
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
|
|||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-ast-1.31.2/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-ast-1.31.2/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ruby-progressbar-1.13.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ruby-progressbar-1.13.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-display_width-2.5.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-display_width-2.5.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-1.63.2/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-1.63.3/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-capybara-2.20.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-capybara-2.20.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-factory_bot-2.25.1/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-factory_bot-2.25.1/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-md-1.2.2/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-md-1.2.2/lib")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user