Merge pull request #18836 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-ast-1.36.2
This commit is contained in:
commit
f2719dc537
@ -82,7 +82,7 @@ GEM
|
|||||||
rubocop-ast (>= 1.36.1, < 2.0)
|
rubocop-ast (>= 1.36.1, < 2.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 2.4.0, < 4.0)
|
unicode-display_width (>= 2.4.0, < 4.0)
|
||||||
rubocop-ast (1.36.1)
|
rubocop-ast (1.36.2)
|
||||||
parser (>= 3.3.1.0)
|
parser (>= 3.3.1.0)
|
||||||
rubocop-md (1.2.4)
|
rubocop-md (1.2.4)
|
||||||
rubocop (>= 1.45)
|
rubocop (>= 1.45)
|
||||||
|
@ -2618,11 +2618,12 @@ RuboCop::AST::MethodIdentifierPredicates::OPERATOR_METHODS = T.let(T.unsafe(nil)
|
|||||||
class RuboCop::AST::MlhsNode < ::RuboCop::AST::Node
|
class RuboCop::AST::MlhsNode < ::RuboCop::AST::Node
|
||||||
# Returns all the assignment nodes on the left hand side (LHS) of a multiple assignment.
|
# Returns all the assignment nodes on the left hand side (LHS) of a multiple assignment.
|
||||||
# These are generally assignment nodes (`lvasgn`, `ivasgn`, `cvasgn`, `gvasgn`, `casgn`)
|
# These are generally assignment nodes (`lvasgn`, `ivasgn`, `cvasgn`, `gvasgn`, `casgn`)
|
||||||
# but can also be `send` nodes in case of `foo.bar, ... =` or `foo[:bar], ... =`.
|
# but can also be `send` nodes in case of `foo.bar, ... =` or `foo[:bar], ... =`,
|
||||||
|
# or a `splat` node for `*, ... =`.
|
||||||
#
|
#
|
||||||
# @return [Array<Node>] the assignment nodes of the multiple assignment LHS
|
# @return [Array<Node>] the assignment nodes of the multiple assignment LHS
|
||||||
#
|
#
|
||||||
# source://rubocop-ast//lib/rubocop/ast/node/mlhs_node.rb#14
|
# source://rubocop-ast//lib/rubocop/ast/node/mlhs_node.rb#15
|
||||||
def assignments; end
|
def assignments; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -5325,7 +5326,7 @@ RuboCop::AST::NodePattern::Sets::SET_ALL_CONTEXT = T.let(T.unsafe(nil), Set)
|
|||||||
RuboCop::AST::NodePattern::Sets::SET_AND_RETURN_AND_RAISE_AND_THROW_ETC = T.let(T.unsafe(nil), Set)
|
RuboCop::AST::NodePattern::Sets::SET_AND_RETURN_AND_RAISE_AND_THROW_ETC = T.let(T.unsafe(nil), Set)
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
||||||
RuboCop::AST::NodePattern::Sets::SET_ANY_EMPTY = T.let(T.unsafe(nil), Set)
|
RuboCop::AST::NodePattern::Sets::SET_ANY_EMPTY_NONE = T.let(T.unsafe(nil), Set)
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
||||||
RuboCop::AST::NodePattern::Sets::SET_ANY_EMPTY_NONE_ETC = T.let(T.unsafe(nil), Set)
|
RuboCop::AST::NodePattern::Sets::SET_ANY_EMPTY_NONE_ETC = T.let(T.unsafe(nil), Set)
|
||||||
@ -5523,7 +5524,7 @@ RuboCop::AST::NodePattern::Sets::SET_NIL_ = T.let(T.unsafe(nil), Set)
|
|||||||
RuboCop::AST::NodePattern::Sets::SET_PIPELINE_PIPELINE_R_PIPELINE_RW_ETC = T.let(T.unsafe(nil), Set)
|
RuboCop::AST::NodePattern::Sets::SET_PIPELINE_PIPELINE_R_PIPELINE_RW_ETC = T.let(T.unsafe(nil), Set)
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
||||||
RuboCop::AST::NodePattern::Sets::SET_PRESENT_ANY_BLANK_EMPTY = T.let(T.unsafe(nil), Set)
|
RuboCop::AST::NodePattern::Sets::SET_PRESENT_ANY_BLANK_ETC = T.let(T.unsafe(nil), Set)
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
||||||
RuboCop::AST::NodePattern::Sets::SET_PRIVATE_PROTECTED_PRIVATE_CLASS_METHOD = T.let(T.unsafe(nil), Set)
|
RuboCop::AST::NodePattern::Sets::SET_PRIVATE_PROTECTED_PRIVATE_CLASS_METHOD = T.let(T.unsafe(nil), Set)
|
||||||
@ -7370,28 +7371,28 @@ class RuboCop::AST::YieldNode < ::RuboCop::AST::Node
|
|||||||
end
|
end
|
||||||
|
|
||||||
class RuboCop::CommentConfig
|
class RuboCop::CommentConfig
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#34
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#34
|
||||||
def initialize(processed_source); end
|
def initialize(processed_source); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#63
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#63
|
||||||
def comment_only_line?(line_number); end
|
def comment_only_line?(line_number); end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def config(*_arg0, **_arg1, &_arg2); end
|
def config(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#51
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#51
|
||||||
def cop_disabled_line_ranges; end
|
def cop_disabled_line_ranges; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#39
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#39
|
||||||
def cop_enabled_at_line?(cop, line_number); end
|
def cop_enabled_at_line?(cop, line_number); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#47
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#47
|
||||||
def cop_opted_in?(cop); end
|
def cop_opted_in?(cop); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#55
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#55
|
||||||
def extra_enabled_comments; end
|
def extra_enabled_comments; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#30
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#30
|
||||||
def processed_source; end
|
def processed_source; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7399,51 +7400,51 @@ class RuboCop::CommentConfig
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#96
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#96
|
||||||
def analyze; end
|
def analyze; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#124
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#124
|
||||||
def analyze_cop(analysis, directive); end
|
def analyze_cop(analysis, directive); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#144
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#144
|
||||||
def analyze_disabled(analysis, directive); end
|
def analyze_disabled(analysis, directive); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#155
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#155
|
||||||
def analyze_rest(analysis, directive); end
|
def analyze_rest(analysis, directive); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#135
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#135
|
||||||
def analyze_single_line(analysis, directive); end
|
def analyze_single_line(analysis, directive); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#164
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#164
|
||||||
def cop_line_ranges(analysis); end
|
def cop_line_ranges(analysis); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#170
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#170
|
||||||
def each_directive; end
|
def each_directive; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#69
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#69
|
||||||
def extra_enabled_comments_with_names(extras:, names:); end
|
def extra_enabled_comments_with_names(extras:, names:); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#190
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#190
|
||||||
def handle_enable_all(directive, names, extras); end
|
def handle_enable_all(directive, names, extras); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#204
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#204
|
||||||
def handle_switch(directive, names, extras); end
|
def handle_switch(directive, names, extras); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#115
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#115
|
||||||
def inject_disabled_cops_directives(analyses); end
|
def inject_disabled_cops_directives(analyses); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#183
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#183
|
||||||
def non_comment_token_line_numbers; end
|
def non_comment_token_line_numbers; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#83
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#83
|
||||||
def opt_in_cops; end
|
def opt_in_cops; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/comment_config.rb#179
|
# source://rubocop/1.69.0/lib/rubocop/comment_config.rb#179
|
||||||
def qualified_cop_name(cop_name); end
|
def qualified_cop_name(cop_name); end
|
||||||
end
|
end
|
||||||
|
|
||||||
class RuboCop::Config
|
class RuboCop::Config
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#30
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#30
|
||||||
def initialize(hash = T.unsafe(nil), loaded_path = T.unsafe(nil)); end
|
def initialize(hash = T.unsafe(nil), loaded_path = T.unsafe(nil)); end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7452,37 +7453,37 @@ class RuboCop::Config
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def []=(*_arg0, **_arg1, &_arg2); end
|
def []=(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#170
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#170
|
||||||
def active_support_extensions_enabled?; end
|
def active_support_extensions_enabled?; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#96
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#96
|
||||||
def add_excludes_from_higher_level(highest_config); end
|
def add_excludes_from_higher_level(highest_config); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#197
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#197
|
||||||
def allowed_camel_case_file?(file); end
|
def allowed_camel_case_file?(file); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#241
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#241
|
||||||
def base_dir_for_path_parameters; end
|
def base_dir_for_path_parameters; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#271
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#271
|
||||||
def bundler_lock_file_path; end
|
def bundler_lock_file_path; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#51
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#51
|
||||||
def check; end
|
def check; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#142
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#142
|
||||||
def clusivity_config_for_badge?(badge); end
|
def clusivity_config_for_badge?(badge); end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def delete(*_arg0, **_arg1, &_arg2); end
|
def delete(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#108
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#108
|
||||||
def deprecation_check; end
|
def deprecation_check; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def dig(*_arg0, **_arg1, &_arg2); end
|
def dig(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#162
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#162
|
||||||
def disabled_new_cops?; end
|
def disabled_new_cops?; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7491,37 +7492,37 @@ class RuboCop::Config
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def each_key(*_arg0, **_arg1, &_arg2); end
|
def each_key(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#166
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#166
|
||||||
def enabled_new_cops?; end
|
def enabled_new_cops?; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def fetch(*_arg0, **_arg1, &_arg2); end
|
def fetch(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#219
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#219
|
||||||
def file_to_exclude?(file); end
|
def file_to_exclude?(file); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#178
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#178
|
||||||
def file_to_include?(file); end
|
def file_to_include?(file); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#158
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#158
|
||||||
def for_all_cops; end
|
def for_all_cops; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#128
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#128
|
||||||
def for_badge(badge); end
|
def for_badge(badge); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#122
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#122
|
||||||
def for_cop(cop); end
|
def for_cop(cop); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#153
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#153
|
||||||
def for_department(department_name); end
|
def for_department(department_name); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#296
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#296
|
||||||
def gem_versions_in_target; end
|
def gem_versions_in_target; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#300
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#300
|
||||||
def inspect; end
|
def inspect; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#76
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#76
|
||||||
def internal?; end
|
def internal?; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7530,13 +7531,13 @@ class RuboCop::Config
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def keys(*_arg0, **_arg1, &_arg2); end
|
def keys(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#47
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#47
|
||||||
def loaded_features; end
|
def loaded_features; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#20
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#20
|
||||||
def loaded_path; end
|
def loaded_path; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#81
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#81
|
||||||
def make_excludes_absolute; end
|
def make_excludes_absolute; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7545,37 +7546,37 @@ class RuboCop::Config
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def merge(*_arg0, **_arg1, &_arg2); end
|
def merge(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#251
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#251
|
||||||
def parser_engine; end
|
def parser_engine; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#232
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#232
|
||||||
def path_relative_to_config(path); end
|
def path_relative_to_config(path); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#228
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#228
|
||||||
def patterns_to_exclude; end
|
def patterns_to_exclude; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#224
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#224
|
||||||
def patterns_to_include; end
|
def patterns_to_include; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#282
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#282
|
||||||
def pending_cops; end
|
def pending_cops; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#211
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#211
|
||||||
def possibly_include_hidden?; end
|
def possibly_include_hidden?; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def replace(*_arg0, **_arg1, &_arg2); end
|
def replace(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#71
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#71
|
||||||
def signature; end
|
def signature; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#266
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#266
|
||||||
def smart_loaded_path; end
|
def smart_loaded_path; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#174
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#174
|
||||||
def string_literals_frozen_by_default?; end
|
def string_literals_frozen_by_default?; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#255
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#255
|
||||||
def target_rails_version; end
|
def target_rails_version; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7587,7 +7588,7 @@ class RuboCop::Config
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def to_hash(*_arg0, **_arg1, &_arg2); end
|
def to_hash(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#67
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#67
|
||||||
def to_s; end
|
def to_s; end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7596,37 +7597,37 @@ class RuboCop::Config
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def validate(*_arg0, **_arg1, &_arg2); end
|
def validate(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#58
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#58
|
||||||
def validate_after_resolution; end
|
def validate_after_resolution; end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#350
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#350
|
||||||
def department_of(qualified_cop_name); end
|
def department_of(qualified_cop_name); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#338
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#338
|
||||||
def enable_cop?(qualified_cop_name, cop_options); end
|
def enable_cop?(qualified_cop_name, cop_options); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#325
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#325
|
||||||
def gem_version_to_major_minor_float(gem_version); end
|
def gem_version_to_major_minor_float(gem_version); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#331
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#331
|
||||||
def read_gem_versions_from_target_lockfile; end
|
def read_gem_versions_from_target_lockfile; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#312
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#312
|
||||||
def read_rails_version_from_bundler_lock_file; end
|
def read_rails_version_from_bundler_lock_file; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#307
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#307
|
||||||
def target_rails_version_from_bundler_lock_file; end
|
def target_rails_version_from_bundler_lock_file; end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config.rb#22
|
# source://rubocop/1.69.0/lib/rubocop/config.rb#22
|
||||||
def create(hash, path, check: T.unsafe(nil)); end
|
def create(hash, path, check: T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class RuboCop::ConfigValidator
|
class RuboCop::ConfigValidator
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#27
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#27
|
||||||
def initialize(config); end
|
def initialize(config); end
|
||||||
|
|
||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
@ -7635,66 +7636,66 @@ class RuboCop::ConfigValidator
|
|||||||
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
# source://rubocop-ast//lib/rubocop/ast/utilities/simple_forwardable.rb#9
|
||||||
def smart_loaded_path(*_arg0, **_arg1, &_arg2); end
|
def smart_loaded_path(*_arg0, **_arg1, &_arg2); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#63
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#63
|
||||||
def target_ruby_version; end
|
def target_ruby_version; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#33
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#33
|
||||||
def validate; end
|
def validate; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#59
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#59
|
||||||
def validate_after_resolution; end
|
def validate_after_resolution; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#67
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#67
|
||||||
def validate_section_presence(name); end
|
def validate_section_presence(name); end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#104
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#104
|
||||||
def alert_about_unrecognized_cops(invalid_cop_names); end
|
def alert_about_unrecognized_cops(invalid_cop_names); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#254
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#254
|
||||||
def check_cop_config_value(hash, parent = T.unsafe(nil)); end
|
def check_cop_config_value(hash, parent = T.unsafe(nil)); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#77
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#77
|
||||||
def check_obsoletions; end
|
def check_obsoletions; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#84
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#84
|
||||||
def check_target_ruby; end
|
def check_target_ruby; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#195
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#195
|
||||||
def each_invalid_parameter(cop_name); end
|
def each_invalid_parameter(cop_name); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#120
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#120
|
||||||
def list_unknown_cops(invalid_cop_names); end
|
def list_unknown_cops(invalid_cop_names); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#274
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#274
|
||||||
def param_error_message(parent, key, value, supposed_values); end
|
def param_error_message(parent, key, value, supposed_values); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#242
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#242
|
||||||
def reject_conflicting_safe_settings; end
|
def reject_conflicting_safe_settings; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#233
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#233
|
||||||
def reject_mutually_exclusive_defaults; end
|
def reject_mutually_exclusive_defaults; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#142
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#142
|
||||||
def suggestion(name); end
|
def suggestion(name); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#75
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#75
|
||||||
def target_ruby; end
|
def target_ruby; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#207
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#207
|
||||||
def validate_enforced_styles(valid_cop_names); end
|
def validate_enforced_styles(valid_cop_names); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#169
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#169
|
||||||
def validate_new_cops_parameter; end
|
def validate_new_cops_parameter; end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#180
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#180
|
||||||
def validate_parameter_names(valid_cop_names); end
|
def validate_parameter_names(valid_cop_names); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#227
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#227
|
||||||
def validate_support_and_has_list(name, formats, valid); end
|
def validate_support_and_has_list(name, formats, valid); end
|
||||||
|
|
||||||
# source://rubocop/1.68.0/lib/rubocop/config_validator.rb#158
|
# source://rubocop/1.69.0/lib/rubocop/config_validator.rb#158
|
||||||
def validate_syntax_cop; end
|
def validate_syntax_cop; end
|
||||||
end
|
end
|
||||||
|
|
@ -85,7 +85,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-retry-0.6.2/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rspec-retry-0.6.2/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rspec-sorbet-1.9.2/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rspec-sorbet-1.9.2/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/rspec_junit_formatter-0.6.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-ast-1.36.1/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-ast-1.36.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-emoji-4.0.4/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-emoji-4.0.4/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-display_width-3.1.2/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-display_width-3.1.2/lib")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user