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:
Mike McQuaid 2024-04-22 19:31:35 +01:00 committed by GitHub
commit a49fc9d558
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 23 additions and 12 deletions

View File

@ -76,7 +76,7 @@ GEM
rspec-support (3.13.1)
rspec_junit_formatter (0.6.0)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (1.63.2)
rubocop (1.63.3)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)

View File

@ -11,6 +11,9 @@ class Homebrew::CLI::Args
sig { returns(T::Boolean) }
def annotate?; end
sig { returns(T.nilable(String)) }
def arch; end
sig { returns(T::Boolean) }
def cask?; end
@ -65,6 +68,9 @@ class Homebrew::CLI::Args
sig { returns(T::Boolean) }
def n?; end
sig { returns(T.nilable(String)) }
def os; end
sig { returns(T::Boolean) }
def skip_recommended?; end

View File

@ -744,6 +744,11 @@ class RuboCop::CachedData
# source://rubocop//lib/rubocop/cached_data.rb#47
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
#
# source://rubocop//lib/rubocop/cached_data.rb#40
@ -48283,12 +48288,12 @@ RuboCop::Cop::Style::Semicolon::MSG = T.let(T.unsafe(nil), String)
#
# @example
# # bad
# Foo.send(:bar)
# quuz.send(:fred)
# Foo.send(bar)
# quuz.send(fred)
#
# # good
# Foo.__send__(:bar)
# quuz.public_send(:fred)
# Foo.__send__(bar)
# quuz.public_send(fred)
#
# source://rubocop//lib/rubocop/cop/style/send.rb#16
class RuboCop::Cop::Style::Send < ::RuboCop::Cop::Base
@ -55814,32 +55819,32 @@ class RuboCop::LSP::Server
# @api private
#
# source://rubocop//lib/rubocop/lsp/server.rb#59
# source://rubocop//lib/rubocop/lsp/server.rb#61
def configure(options); end
# @api private
#
# source://rubocop//lib/rubocop/lsp/server.rb#51
# source://rubocop//lib/rubocop/lsp/server.rb#53
def format(path, text, command:); end
# @api private
#
# source://rubocop//lib/rubocop/lsp/server.rb#55
# source://rubocop//lib/rubocop/lsp/server.rb#57
def offenses(path, text); end
# @api private
#
# source://rubocop//lib/rubocop/lsp/server.rb#32
# source://rubocop//lib/rubocop/lsp/server.rb#34
def start; end
# @api private
#
# source://rubocop//lib/rubocop/lsp/server.rb#65
# source://rubocop//lib/rubocop/lsp/server.rb#67
def stop(&block); end
# @api private
#
# source://rubocop//lib/rubocop/lsp/server.rb#47
# source://rubocop//lib/rubocop/lsp/server.rb#49
def write(response); end
end

View File

@ -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/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/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-factory_bot-2.25.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-md-1.2.2/lib")