mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Merge pull request #14199 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-ast-1.24.0
build(deps): bump rubocop-ast from 1.23.0 to 1.24.0 in /Library/Homebrew
This commit is contained in:
commit
080a420ba4
@ -142,7 +142,7 @@ GEM
|
||||
rubocop-ast (>= 1.20.1, < 2.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 1.4.0, < 3.0)
|
||||
rubocop-ast (1.23.0)
|
||||
rubocop-ast (1.24.0)
|
||||
parser (>= 3.1.1.0)
|
||||
rubocop-performance (1.15.1)
|
||||
rubocop (>= 1.7.0, < 2.0)
|
||||
|
@ -659,6 +659,8 @@ class RuboCop::AST::Node < ::Parser::AST::Node
|
||||
def forward_arg_type?; end
|
||||
def forward_args_type?; end
|
||||
def forwarded_args_type?; end
|
||||
def forwarded_kwrestarg_type?; end
|
||||
def forwarded_restarg_type?; end
|
||||
def global_const?(param0 = T.unsafe(nil), param1); end
|
||||
def guard_clause?; end
|
||||
def gvar_type?; end
|
||||
@ -1491,6 +1493,7 @@ RuboCop::AST::NodePattern::Sets::SET_SPAWN_SYSTEM = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_SPRINTF_FORMAT = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_START_WITH_END_WITH = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_START_WITH_STARTS_WITH_END_WITH_ENDS_WITH = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_STDOUT_STDERR = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_STRUCT_CLASS = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_SUCC_PRED_NEXT = T.let(T.unsafe(nil), Set)
|
||||
RuboCop::AST::NodePattern::Sets::SET_TEMPFILE_STRINGIO = T.let(T.unsafe(nil), Set)
|
||||
@ -1854,6 +1857,8 @@ module RuboCop::AST::Traversal
|
||||
def on_forward_arg(node); end
|
||||
def on_forward_args(node); end
|
||||
def on_forwarded_args(node); end
|
||||
def on_forwarded_kwrestarg(node); end
|
||||
def on_forwarded_restarg(node); end
|
||||
def on_gvar(node); end
|
||||
def on_gvasgn(node); end
|
||||
def on_hash(node); end
|
@ -6723,10 +6723,6 @@ class RuboCop::AST::Node
|
||||
|
||||
def cask_block?(param0=T.unsafe(nil)); end
|
||||
|
||||
def forwarded_kwrestarg_type?(); end
|
||||
|
||||
def forwarded_restarg_type?(); end
|
||||
|
||||
def key_node(param0=T.unsafe(nil)); end
|
||||
|
||||
def method_node(param0=T.unsafe(nil)); end
|
||||
@ -6747,18 +6743,11 @@ module RuboCop::AST::NodePattern::Sets
|
||||
SET_MAC_LINUX = ::T.let(nil, ::T.untyped)
|
||||
SET_ON_INTEL_ON_ARM = ::T.let(nil, ::T.untyped)
|
||||
SET_OR_NEWER_OR_OLDER = ::T.let(nil, ::T.untyped)
|
||||
SET_STDOUT_STDERR = ::T.let(nil, ::T.untyped)
|
||||
SET_SYSTEM_SHELL_OUTPUT_PIPE_OUTPUT = ::T.let(nil, ::T.untyped)
|
||||
SET_WITH_WITHOUT = ::T.let(nil, ::T.untyped)
|
||||
SET____ETC_4 = ::T.let(nil, ::T.untyped)
|
||||
end
|
||||
|
||||
module RuboCop::AST::Traversal
|
||||
def on_forwarded_kwrestarg(node); end
|
||||
|
||||
def on_forwarded_restarg(node); end
|
||||
end
|
||||
|
||||
class RuboCop::Cask::AST::Stanza
|
||||
def app?(); end
|
||||
|
||||
|
@ -101,7 +101,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rspec-sorbet-1.9.1/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rspec-wait-0.0.9/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rspec_junit_formatter-0.6.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-ast-1.23.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-ast-1.24.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ruby-progressbar-1.11.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-display_width-2.3.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-1.35.1/lib")
|
||||
|
Loading…
x
Reference in New Issue
Block a user