rubocop 1.69.2 → 1.75.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +4 -4
- data/config/default.yml +154 -23
- data/config/internal_affairs.yml +20 -0
- data/config/obsoletion.yml +3 -1
- data/lib/rubocop/cli/command/execute_runner.rb +3 -3
- data/lib/rubocop/cli/command/show_cops.rb +24 -2
- data/lib/rubocop/cli/command/suggest_extensions.rb +7 -1
- data/lib/rubocop/cli.rb +1 -1
- data/lib/rubocop/comment_config.rb +2 -2
- data/lib/rubocop/config.rb +52 -10
- data/lib/rubocop/config_loader.rb +52 -9
- data/lib/rubocop/config_loader_resolver.rb +36 -10
- data/lib/rubocop/config_obsoletion/extracted_cop.rb +4 -3
- data/lib/rubocop/config_obsoletion/renamed_cop.rb +18 -3
- data/lib/rubocop/config_obsoletion.rb +46 -2
- data/lib/rubocop/config_validator.rb +20 -9
- data/lib/rubocop/cop/autocorrect_logic.rb +1 -1
- data/lib/rubocop/cop/base.rb +6 -0
- data/lib/rubocop/cop/bundler/duplicated_gem.rb +1 -1
- data/lib/rubocop/cop/bundler/gem_comment.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/cop_enabled.rb +85 -0
- data/lib/rubocop/cop/internal_affairs/example_description.rb +7 -3
- data/lib/rubocop/cop/internal_affairs/location_exists.rb +116 -0
- data/lib/rubocop/cop/internal_affairs/location_expression.rb +2 -1
- data/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +3 -2
- data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +63 -0
- data/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +131 -0
- data/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +229 -0
- data/lib/rubocop/cop/internal_affairs/node_type_group.rb +91 -0
- data/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +126 -0
- data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +4 -3
- data/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +90 -0
- data/lib/rubocop/cop/internal_affairs/plugin.rb +33 -0
- data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +6 -5
- data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +3 -1
- data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +5 -4
- data/lib/rubocop/cop/internal_affairs/undefined_config.rb +7 -1
- data/lib/rubocop/cop/internal_affairs.rb +6 -16
- data/lib/rubocop/cop/layout/access_modifier_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/argument_alignment.rb +2 -8
- data/lib/rubocop/cop/layout/block_alignment.rb +4 -1
- data/lib/rubocop/cop/layout/block_end_newline.rb +1 -0
- data/lib/rubocop/cop/layout/class_structure.rb +9 -9
- data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +4 -4
- data/lib/rubocop/cop/layout/dot_position.rb +1 -1
- data/lib/rubocop/cop/layout/else_alignment.rb +2 -2
- data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +1 -1
- data/lib/rubocop/cop/layout/empty_line_between_defs.rb +7 -11
- data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +28 -1
- data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +1 -0
- data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +1 -1
- data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +22 -2
- data/lib/rubocop/cop/layout/end_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/extra_spacing.rb +1 -1
- data/lib/rubocop/cop/layout/first_argument_indentation.rb +3 -8
- data/lib/rubocop/cop/layout/first_array_element_indentation.rb +2 -7
- data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +2 -7
- data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +1 -1
- data/lib/rubocop/cop/layout/first_parameter_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/hash_alignment.rb +6 -4
- data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2 -1
- data/lib/rubocop/cop/layout/indentation_width.rb +1 -0
- data/lib/rubocop/cop/layout/line_continuation_spacing.rb +7 -1
- data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/line_length.rb +9 -4
- data/lib/rubocop/cop/layout/multiline_block_layout.rb +1 -0
- data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +1 -1
- data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +25 -0
- data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +1 -0
- data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +4 -4
- data/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +1 -0
- data/lib/rubocop/cop/layout/redundant_line_break.rb +16 -11
- data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +2 -2
- data/lib/rubocop/cop/layout/single_line_block_chain.rb +1 -1
- data/lib/rubocop/cop/layout/space_after_colon.rb +2 -2
- data/lib/rubocop/cop/layout/space_after_comma.rb +1 -1
- data/lib/rubocop/cop/layout/space_after_method_name.rb +1 -1
- data/lib/rubocop/cop/layout/space_after_semicolon.rb +1 -1
- data/lib/rubocop/cop/layout/space_around_keyword.rb +1 -0
- data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +1 -1
- data/lib/rubocop/cop/layout/space_around_operators.rb +7 -4
- data/lib/rubocop/cop/layout/space_before_block_braces.rb +1 -0
- data/lib/rubocop/cop/layout/space_before_comma.rb +1 -1
- data/lib/rubocop/cop/layout/space_before_semicolon.rb +1 -1
- data/lib/rubocop/cop/layout/space_inside_block_braces.rb +1 -0
- data/lib/rubocop/cop/layout/trailing_whitespace.rb +5 -3
- data/lib/rubocop/cop/lint/ambiguous_block_association.rb +1 -1
- data/lib/rubocop/cop/lint/array_literal_in_regexp.rb +119 -0
- data/lib/rubocop/cop/lint/assignment_in_condition.rb +1 -3
- data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +1 -1
- data/lib/rubocop/cop/lint/constant_definition_in_block.rb +3 -3
- data/lib/rubocop/cop/lint/constant_reassignment.rb +148 -0
- data/lib/rubocop/cop/lint/cop_directive_syntax.rb +84 -0
- data/lib/rubocop/cop/lint/debugger.rb +3 -3
- data/lib/rubocop/cop/lint/duplicate_match_pattern.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_methods.rb +0 -14
- data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_set_element.rb +20 -7
- data/lib/rubocop/cop/lint/empty_conditional_body.rb +14 -64
- data/lib/rubocop/cop/lint/empty_expression.rb +0 -2
- data/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -6
- data/lib/rubocop/cop/lint/float_comparison.rb +6 -8
- data/lib/rubocop/cop/lint/float_out_of_range.rb +1 -1
- data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +2 -2
- data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +1 -1
- data/lib/rubocop/cop/lint/literal_as_condition.rb +103 -9
- data/lib/rubocop/cop/lint/literal_in_interpolation.rb +24 -6
- data/lib/rubocop/cop/lint/missing_super.rb +2 -2
- data/lib/rubocop/cop/lint/mixed_case_range.rb +3 -3
- data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +1 -1
- data/lib/rubocop/cop/lint/nested_method_definition.rb +8 -4
- data/lib/rubocop/cop/lint/next_without_accumulator.rb +1 -1
- data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +4 -3
- data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +3 -3
- data/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +18 -31
- data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +2 -1
- data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +1 -5
- data/lib/rubocop/cop/lint/raise_exception.rb +29 -10
- data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -21
- data/lib/rubocop/cop/lint/redundant_string_coercion.rb +2 -2
- data/lib/rubocop/cop/lint/redundant_type_conversion.rb +258 -0
- data/lib/rubocop/cop/lint/redundant_with_index.rb +3 -0
- data/lib/rubocop/cop/lint/redundant_with_object.rb +3 -0
- data/lib/rubocop/cop/lint/rescue_exception.rb +1 -1
- data/lib/rubocop/cop/lint/return_in_void_context.rb +4 -11
- data/lib/rubocop/cop/lint/safe_navigation_chain.rb +8 -1
- data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +8 -1
- data/lib/rubocop/cop/lint/shared_mutable_default.rb +76 -0
- data/lib/rubocop/cop/lint/suppressed_exception.rb +1 -1
- data/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +111 -0
- data/lib/rubocop/cop/lint/symbol_conversion.rb +1 -1
- data/lib/rubocop/cop/lint/syntax.rb +4 -1
- data/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +1 -4
- data/lib/rubocop/cop/lint/unexpected_block_arity.rb +3 -1
- data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +1 -1
- data/lib/rubocop/cop/lint/unreachable_code.rb +2 -1
- data/lib/rubocop/cop/lint/unreachable_loop.rb +6 -6
- data/lib/rubocop/cop/lint/useless_access_modifier.rb +5 -4
- data/lib/rubocop/cop/lint/useless_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/useless_constant_scoping.rb +71 -0
- data/lib/rubocop/cop/lint/useless_method_definition.rb +1 -1
- data/lib/rubocop/cop/lint/useless_numeric_operation.rb +2 -1
- data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +2 -2
- data/lib/rubocop/cop/lint/void.rb +12 -9
- data/lib/rubocop/cop/metrics/block_length.rb +1 -0
- data/lib/rubocop/cop/metrics/block_nesting.rb +1 -1
- data/lib/rubocop/cop/metrics/collection_literal_length.rb +7 -0
- data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +1 -1
- data/lib/rubocop/cop/metrics/method_length.rb +9 -1
- data/lib/rubocop/cop/metrics/module_length.rb +1 -1
- data/lib/rubocop/cop/metrics/perceived_complexity.rb +1 -1
- data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +1 -1
- data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +7 -7
- data/lib/rubocop/cop/mixin/alignment.rb +2 -2
- data/lib/rubocop/cop/mixin/allowed_pattern.rb +4 -4
- data/lib/rubocop/cop/mixin/check_line_breakable.rb +13 -13
- data/lib/rubocop/cop/mixin/check_single_line_suitability.rb +1 -1
- data/lib/rubocop/cop/mixin/comments_help.rb +4 -2
- data/lib/rubocop/cop/mixin/dig_help.rb +1 -1
- data/lib/rubocop/cop/mixin/forbidden_identifiers.rb +20 -0
- data/lib/rubocop/cop/mixin/forbidden_pattern.rb +16 -0
- data/lib/rubocop/cop/mixin/frozen_string_literal.rb +1 -1
- data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +22 -22
- data/lib/rubocop/cop/mixin/hash_subset.rb +203 -0
- data/lib/rubocop/cop/mixin/hash_transform_method.rb +74 -74
- data/lib/rubocop/cop/mixin/method_complexity.rb +2 -1
- data/lib/rubocop/cop/mixin/percent_literal.rb +1 -1
- data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +48 -24
- data/lib/rubocop/cop/mixin/range_help.rb +15 -3
- data/lib/rubocop/cop/mixin/space_before_punctuation.rb +1 -1
- data/lib/rubocop/cop/mixin/statement_modifier.rb +8 -3
- data/lib/rubocop/cop/mixin/string_help.rb +2 -2
- data/lib/rubocop/cop/mixin/string_literals_help.rb +1 -1
- data/lib/rubocop/cop/mixin/target_ruby_version.rb +1 -1
- data/lib/rubocop/cop/mixin/trailing_comma.rb +15 -3
- data/lib/rubocop/cop/naming/block_forwarding.rb +19 -15
- data/lib/rubocop/cop/naming/method_name.rb +64 -8
- data/lib/rubocop/cop/naming/predicate_name.rb +44 -0
- data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +3 -3
- data/lib/rubocop/cop/naming/variable_name.rb +51 -6
- data/lib/rubocop/cop/registry.rb +9 -6
- data/lib/rubocop/cop/security/compound_hash.rb +1 -0
- data/lib/rubocop/cop/style/access_modifier_declarations.rb +34 -5
- data/lib/rubocop/cop/style/accessor_grouping.rb +19 -5
- data/lib/rubocop/cop/style/and_or.rb +1 -1
- data/lib/rubocop/cop/style/arguments_forwarding.rb +39 -23
- data/lib/rubocop/cop/style/array_first_last.rb +18 -2
- data/lib/rubocop/cop/style/array_intersect.rb +39 -28
- data/lib/rubocop/cop/style/block_delimiters.rb +9 -21
- data/lib/rubocop/cop/style/class_and_module_children.rb +35 -10
- data/lib/rubocop/cop/style/collection_methods.rb +2 -1
- data/lib/rubocop/cop/style/combinable_defined.rb +1 -1
- data/lib/rubocop/cop/style/combinable_loops.rb +3 -2
- data/lib/rubocop/cop/style/commented_keyword.rb +10 -3
- data/lib/rubocop/cop/style/comparable_between.rb +75 -0
- data/lib/rubocop/cop/style/concat_array_literals.rb +1 -1
- data/lib/rubocop/cop/style/conditional_assignment.rb +6 -4
- data/lib/rubocop/cop/style/documentation.rb +1 -1
- data/lib/rubocop/cop/style/double_negation.rb +4 -4
- data/lib/rubocop/cop/style/each_for_simple_loop.rb +4 -7
- data/lib/rubocop/cop/style/each_with_object.rb +2 -3
- data/lib/rubocop/cop/style/empty_else.rb +4 -2
- data/lib/rubocop/cop/style/empty_literal.rb +1 -1
- data/lib/rubocop/cop/style/empty_method.rb +1 -1
- data/lib/rubocop/cop/style/endless_method.rb +163 -18
- data/lib/rubocop/cop/style/eval_with_location.rb +1 -1
- data/lib/rubocop/cop/style/exact_regexp_match.rb +3 -10
- data/lib/rubocop/cop/style/expand_path_arguments.rb +2 -7
- data/lib/rubocop/cop/style/explicit_block_argument.rb +15 -2
- data/lib/rubocop/cop/style/exponential_notation.rb +3 -3
- data/lib/rubocop/cop/style/fetch_env_var.rb +1 -1
- data/lib/rubocop/cop/style/float_division.rb +8 -4
- data/lib/rubocop/cop/style/for.rb +1 -0
- data/lib/rubocop/cop/style/format_string_token.rb +38 -11
- data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +1 -1
- data/lib/rubocop/cop/style/guard_clause.rb +2 -1
- data/lib/rubocop/cop/style/hash_each_methods.rb +6 -8
- data/lib/rubocop/cop/style/hash_except.rb +24 -148
- data/lib/rubocop/cop/style/hash_fetch_chain.rb +105 -0
- data/lib/rubocop/cop/style/hash_slice.rb +80 -0
- data/lib/rubocop/cop/style/hash_syntax.rb +6 -3
- data/lib/rubocop/cop/style/identical_conditional_branches.rb +22 -3
- data/lib/rubocop/cop/style/if_inside_else.rb +10 -13
- data/lib/rubocop/cop/style/if_unless_modifier.rb +5 -5
- data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +1 -1
- data/lib/rubocop/cop/style/if_with_semicolon.rb +2 -2
- data/lib/rubocop/cop/style/infinite_loop.rb +1 -1
- data/lib/rubocop/cop/style/inverse_methods.rb +15 -11
- data/lib/rubocop/cop/style/invertible_unless_condition.rb +2 -2
- data/lib/rubocop/cop/style/ip_addresses.rb +2 -2
- data/lib/rubocop/cop/style/it_assignment.rb +36 -0
- data/lib/rubocop/cop/style/it_block_parameter.rb +100 -0
- data/lib/rubocop/cop/style/keyword_parameters_order.rb +14 -8
- data/lib/rubocop/cop/style/lambda.rb +1 -0
- data/lib/rubocop/cop/style/line_end_concatenation.rb +10 -4
- data/lib/rubocop/cop/style/map_into_array.rb +2 -1
- data/lib/rubocop/cop/style/map_to_hash.rb +1 -1
- data/lib/rubocop/cop/style/map_to_set.rb +3 -2
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +22 -15
- data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +2 -0
- data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +2 -1
- data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +3 -4
- data/lib/rubocop/cop/style/method_def_parentheses.rb +1 -1
- data/lib/rubocop/cop/style/missing_else.rb +2 -0
- data/lib/rubocop/cop/style/multiline_block_chain.rb +3 -2
- data/lib/rubocop/cop/style/multiline_method_signature.rb +1 -9
- data/lib/rubocop/cop/style/multiple_comparison.rb +26 -20
- data/lib/rubocop/cop/style/mutable_constant.rb +3 -3
- data/lib/rubocop/cop/style/negated_if_else_condition.rb +1 -1
- data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +1 -1
- data/lib/rubocop/cop/style/next.rb +44 -0
- data/lib/rubocop/cop/style/object_then.rb +14 -15
- data/lib/rubocop/cop/style/open_struct_use.rb +5 -5
- data/lib/rubocop/cop/style/parallel_assignment.rb +1 -5
- data/lib/rubocop/cop/style/parentheses_around_condition.rb +2 -2
- data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
- data/lib/rubocop/cop/style/proc.rb +2 -2
- data/lib/rubocop/cop/style/quoted_symbols.rb +1 -1
- data/lib/rubocop/cop/style/raise_args.rb +14 -12
- data/lib/rubocop/cop/style/random_with_offset.rb +3 -3
- data/lib/rubocop/cop/style/redundant_begin.rb +2 -1
- data/lib/rubocop/cop/style/redundant_condition.rb +47 -2
- data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +16 -5
- data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +6 -10
- data/lib/rubocop/cop/style/redundant_each.rb +1 -1
- data/lib/rubocop/cop/style/redundant_exception.rb +2 -2
- data/lib/rubocop/cop/style/redundant_format.rb +257 -0
- data/lib/rubocop/cop/style/redundant_freeze.rb +3 -3
- data/lib/rubocop/cop/style/redundant_initialize.rb +12 -3
- data/lib/rubocop/cop/style/redundant_line_continuation.rb +34 -13
- data/lib/rubocop/cop/style/redundant_parentheses.rb +30 -15
- data/lib/rubocop/cop/style/redundant_regexp_argument.rb +3 -0
- data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +1 -1
- data/lib/rubocop/cop/style/redundant_regexp_escape.rb +1 -1
- data/lib/rubocop/cop/style/redundant_self.rb +1 -0
- data/lib/rubocop/cop/style/redundant_self_assignment.rb +14 -28
- data/lib/rubocop/cop/style/redundant_sort.rb +2 -2
- data/lib/rubocop/cop/style/redundant_sort_by.rb +17 -1
- data/lib/rubocop/cop/style/redundant_string_escape.rb +2 -2
- data/lib/rubocop/cop/style/rescue_modifier.rb +3 -0
- data/lib/rubocop/cop/style/return_nil.rb +1 -1
- data/lib/rubocop/cop/style/safe_navigation.rb +2 -2
- data/lib/rubocop/cop/style/select_by_regexp.rb +4 -1
- data/lib/rubocop/cop/style/semicolon.rb +1 -1
- data/lib/rubocop/cop/style/send_with_literal_method_name.rb +2 -1
- data/lib/rubocop/cop/style/single_line_block_params.rb +1 -1
- data/lib/rubocop/cop/style/single_line_do_end_block.rb +4 -3
- data/lib/rubocop/cop/style/single_line_methods.rb +6 -7
- data/lib/rubocop/cop/style/slicing_with_range.rb +40 -11
- data/lib/rubocop/cop/style/sole_nested_conditional.rb +41 -106
- data/lib/rubocop/cop/style/string_concatenation.rb +2 -2
- data/lib/rubocop/cop/style/string_literals.rb +1 -1
- data/lib/rubocop/cop/style/string_methods.rb +1 -1
- data/lib/rubocop/cop/style/super_arguments.rb +65 -17
- data/lib/rubocop/cop/style/symbol_proc.rb +2 -0
- data/lib/rubocop/cop/style/ternary_parentheses.rb +1 -1
- data/lib/rubocop/cop/style/top_level_method_definition.rb +2 -1
- data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +4 -1
- data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +47 -6
- data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +48 -6
- data/lib/rubocop/cop/style/trivial_accessors.rb +1 -1
- data/lib/rubocop/cop/style/while_until_modifier.rb +0 -1
- data/lib/rubocop/cop/style/yoda_condition.rb +8 -4
- data/lib/rubocop/cop/style/yoda_expression.rb +2 -1
- data/lib/rubocop/cop/util.rb +12 -5
- data/lib/rubocop/cop/utils/format_string.rb +10 -5
- data/lib/rubocop/cop/variable_force/scope.rb +1 -1
- data/lib/rubocop/cop/variable_force/variable.rb +9 -2
- data/lib/rubocop/cop/variable_force/variable_table.rb +3 -3
- data/lib/rubocop/cop/variable_force.rb +1 -1
- data/lib/rubocop/cops_documentation_generator.rb +25 -14
- data/lib/rubocop/directive_comment.rb +45 -11
- data/lib/rubocop/ext/regexp_node.rb +0 -1
- data/lib/rubocop/formatter/formatter_set.rb +1 -1
- data/lib/rubocop/lsp/diagnostic.rb +189 -0
- data/lib/rubocop/lsp/logger.rb +2 -2
- data/lib/rubocop/lsp/routes.rb +7 -23
- data/lib/rubocop/lsp/runtime.rb +18 -50
- data/lib/rubocop/lsp/server.rb +0 -2
- data/lib/rubocop/lsp/stdin_runner.rb +85 -0
- data/lib/rubocop/options.rb +28 -12
- data/lib/rubocop/path_util.rb +15 -8
- data/lib/rubocop/plugin/configuration_integrator.rb +143 -0
- data/lib/rubocop/plugin/load_error.rb +26 -0
- data/lib/rubocop/plugin/loader.rb +100 -0
- data/lib/rubocop/plugin/not_supported_error.rb +29 -0
- data/lib/rubocop/plugin.rb +46 -0
- data/lib/rubocop/rake_task.rb +4 -1
- data/lib/rubocop/result_cache.rb +13 -13
- data/lib/rubocop/rspec/cop_helper.rb +13 -1
- data/lib/rubocop/rspec/expect_offense.rb +6 -2
- data/lib/rubocop/rspec/shared_contexts.rb +39 -1
- data/lib/rubocop/rspec/support.rb +4 -2
- data/lib/rubocop/runner.rb +10 -7
- data/lib/rubocop/server/cache.rb +35 -2
- data/lib/rubocop/server/cli.rb +2 -2
- data/lib/rubocop/target_finder.rb +1 -0
- data/lib/rubocop/target_ruby.rb +16 -1
- data/lib/rubocop/version.rb +30 -8
- data/lib/rubocop.rb +16 -1
- data/lib/ruby_lsp/rubocop/addon.rb +75 -0
- data/lib/ruby_lsp/rubocop/runtime_adapter.rb +65 -0
- metadata +59 -16
- data/lib/rubocop/cop/utils/regexp_ranges.rb +0 -113
- data/lib/rubocop/rspec/host_environment_simulation_helper.rb +0 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a064330786019e0efee6b496e761b05bea0286f0afdcbb4fffad2f07433aef9d
|
4
|
+
data.tar.gz: eb1ee00d5fe060ea49203635df3c7457df6f416de93c9801a687386aa02f4768
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 336c6e38cc6162a00ca4c9780dcc71fb4b03a785af0eb6abb6c30baf2e1c8512af12e921a2036564102290324e418278cb83ceb06d7a1ec44ddf314923275f89
|
7
|
+
data.tar.gz: cbe9d5ab5685dbab70de2b281ecc807494631a294273260d87315d6875b753d9c2b60f6d7c14379eaf5b384894a4400c747ef91a57323c418c66a51076b33f06
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -52,7 +52,7 @@ To prevent an unwanted RuboCop update you might want to use a conservative versi
|
|
52
52
|
in your `Gemfile`:
|
53
53
|
|
54
54
|
```rb
|
55
|
-
gem 'rubocop', '~> 1.
|
55
|
+
gem 'rubocop', '~> 1.75', require: false
|
56
56
|
```
|
57
57
|
|
58
58
|
See [our versioning policy](https://docs.rubocop.org/rubocop/versioning.html) for further details.
|
@@ -241,11 +241,11 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s
|
|
241
241
|
<a href="https://opencollective.com/rubocop/organization/28/website" target="_blank"><img src="https://opencollective.com/rubocop/organization/28/avatar.svg"></a>
|
242
242
|
<a href="https://opencollective.com/rubocop/organization/29/website" target="_blank"><img src="https://opencollective.com/rubocop/organization/29/avatar.svg"></a>
|
243
243
|
|
244
|
-
##
|
244
|
+
## Release Notes
|
245
245
|
|
246
|
-
RuboCop's
|
246
|
+
RuboCop's release notes are available [here](https://github.com/rubocop/rubocop/releases).
|
247
247
|
|
248
248
|
## Copyright
|
249
249
|
|
250
|
-
Copyright (c) 2012-
|
250
|
+
Copyright (c) 2012-2025 Bozhidar Batsov. See [LICENSE.txt](LICENSE.txt) for
|
251
251
|
further details.
|
data/config/default.yml
CHANGED
@@ -146,12 +146,14 @@ AllCops:
|
|
146
146
|
# Ruby version is still unresolved, RuboCop will use the oldest officially
|
147
147
|
# supported Ruby version (currently Ruby 2.7).
|
148
148
|
TargetRubyVersion: ~
|
149
|
-
#
|
149
|
+
# RuboCop choses the parser engine automatically but you can also specify it yourself.
|
150
|
+
# These options are available:
|
151
|
+
# - `default`
|
150
152
|
# - `parser_whitequark` ... https://github.com/whitequark/parser
|
151
153
|
# - `parser_prism` ... https://github.com/ruby/prism (`Prism::Translation::Parser`)
|
152
|
-
#
|
153
|
-
#
|
154
|
-
ParserEngine:
|
154
|
+
# Not every parser engine can handle every `TargetRubyVersion`. `parser_whitequark`
|
155
|
+
# only works with versions 3.4 and below, `parser_prism` with versions 3.3 and above.
|
156
|
+
ParserEngine: default
|
155
157
|
# Determines if a notification for extension libraries should be shown when
|
156
158
|
# rubocop is run. Keys are the name of the extension, and values are an array
|
157
159
|
# of gems in the Gemfile that the extension is suggested for, if not already
|
@@ -1616,6 +1618,12 @@ Lint/AmbiguousRegexpLiteral:
|
|
1616
1618
|
VersionAdded: '0.17'
|
1617
1619
|
VersionChanged: '0.83'
|
1618
1620
|
|
1621
|
+
Lint/ArrayLiteralInRegexp:
|
1622
|
+
Description: 'Checks for an array literal interpolated inside a regexp.'
|
1623
|
+
Enabled: pending
|
1624
|
+
VersionAdded: '1.71'
|
1625
|
+
SafeAutoCorrect: false
|
1626
|
+
|
1619
1627
|
Lint/AssignmentInCondition:
|
1620
1628
|
Description: "Don't use assignment in conditions."
|
1621
1629
|
StyleGuide: '#safe-assignment-in-condition'
|
@@ -1665,6 +1673,11 @@ Lint/ConstantOverwrittenInRescue:
|
|
1665
1673
|
Enabled: pending
|
1666
1674
|
VersionAdded: '1.31'
|
1667
1675
|
|
1676
|
+
Lint/ConstantReassignment:
|
1677
|
+
Description: 'Checks for constant reassignments.'
|
1678
|
+
Enabled: pending
|
1679
|
+
VersionAdded: '1.70'
|
1680
|
+
|
1668
1681
|
Lint/ConstantResolution:
|
1669
1682
|
Description: 'Check that constants are fully qualified with `::`.'
|
1670
1683
|
Enabled: false
|
@@ -1674,6 +1687,11 @@ Lint/ConstantResolution:
|
|
1674
1687
|
# Restrict this cop from only looking at certain names
|
1675
1688
|
Ignore: []
|
1676
1689
|
|
1690
|
+
Lint/CopDirectiveSyntax:
|
1691
|
+
Description: 'Checks that `# rubocop:` directives are strictly formatted.'
|
1692
|
+
Enabled: pending
|
1693
|
+
VersionAdded: '1.72'
|
1694
|
+
|
1677
1695
|
Lint/Debugger:
|
1678
1696
|
Description: 'Check for debugger calls.'
|
1679
1697
|
Enabled: true
|
@@ -1871,10 +1889,9 @@ Lint/EmptyConditionalBody:
|
|
1871
1889
|
Description: 'Checks for the presence of `if`, `elsif` and `unless` branches without a body.'
|
1872
1890
|
Enabled: true
|
1873
1891
|
AutoCorrect: contextual
|
1874
|
-
SafeAutoCorrect: false
|
1875
1892
|
AllowComments: true
|
1876
1893
|
VersionAdded: '0.89'
|
1877
|
-
VersionChanged: '1.
|
1894
|
+
VersionChanged: '1.73'
|
1878
1895
|
|
1879
1896
|
Lint/EmptyEnsure:
|
1880
1897
|
Description: 'Checks for empty ensure block.'
|
@@ -2030,6 +2047,7 @@ Lint/LambdaWithoutLiteralBlock:
|
|
2030
2047
|
Lint/LiteralAsCondition:
|
2031
2048
|
Description: 'Checks of literals used in conditions.'
|
2032
2049
|
Enabled: true
|
2050
|
+
AutoCorrect: contextual
|
2033
2051
|
VersionAdded: '0.51'
|
2034
2052
|
|
2035
2053
|
Lint/LiteralAssignmentInCondition:
|
@@ -2243,9 +2261,8 @@ Lint/RedundantRegexpQuantifiers:
|
|
2243
2261
|
Lint/RedundantRequireStatement:
|
2244
2262
|
Description: 'Checks for unnecessary `require` statement.'
|
2245
2263
|
Enabled: true
|
2246
|
-
SafeAutoCorrect: false
|
2247
2264
|
VersionAdded: '0.76'
|
2248
|
-
VersionChanged: '1.
|
2265
|
+
VersionChanged: '1.73'
|
2249
2266
|
|
2250
2267
|
Lint/RedundantSafeNavigation:
|
2251
2268
|
Description: 'Checks for redundant safe navigation calls.'
|
@@ -2274,6 +2291,11 @@ Lint/RedundantStringCoercion:
|
|
2274
2291
|
VersionAdded: '0.19'
|
2275
2292
|
VersionChanged: '0.77'
|
2276
2293
|
|
2294
|
+
Lint/RedundantTypeConversion:
|
2295
|
+
Description: 'Checks for redundantly converting a literal to the same type.'
|
2296
|
+
Enabled: pending
|
2297
|
+
VersionAdded: '1.72'
|
2298
|
+
|
2277
2299
|
Lint/RedundantWithIndex:
|
2278
2300
|
Description: 'Checks for redundant `with_index`.'
|
2279
2301
|
Enabled: true
|
@@ -2402,6 +2424,12 @@ Lint/ShadowingOuterLocalVariable:
|
|
2402
2424
|
Enabled: true
|
2403
2425
|
VersionAdded: '0.9'
|
2404
2426
|
|
2427
|
+
Lint/SharedMutableDefault:
|
2428
|
+
Description: 'Checks for mutable literals used as default arguments during Hash initialization.'
|
2429
|
+
StyleGuide: '#no-mutable-defaults'
|
2430
|
+
Enabled: pending
|
2431
|
+
VersionAdded: '1.70'
|
2432
|
+
|
2405
2433
|
Lint/StructNewOverride:
|
2406
2434
|
Description: 'Disallow overriding the `Struct` built-in methods via `Struct.new`.'
|
2407
2435
|
Enabled: true
|
@@ -2416,6 +2444,12 @@ Lint/SuppressedException:
|
|
2416
2444
|
VersionAdded: '0.9'
|
2417
2445
|
VersionChanged: '1.12'
|
2418
2446
|
|
2447
|
+
Lint/SuppressedExceptionInNumberConversion:
|
2448
|
+
Description: 'Checks for cases where exceptions unrelated to the numeric constructors may be unintentionally swallowed.'
|
2449
|
+
Enabled: pending
|
2450
|
+
SafeAutoCorrect: false
|
2451
|
+
VersionAdded: '1.72'
|
2452
|
+
|
2419
2453
|
Lint/SymbolConversion:
|
2420
2454
|
Description: 'Checks for unnecessary symbol conversions.'
|
2421
2455
|
Enabled: pending
|
@@ -2571,6 +2605,11 @@ Lint/UselessAssignment:
|
|
2571
2605
|
VersionAdded: '0.11'
|
2572
2606
|
VersionChanged: '1.66'
|
2573
2607
|
|
2608
|
+
Lint/UselessConstantScoping:
|
2609
|
+
Description: 'Checks for useless constant scoping.'
|
2610
|
+
Enabled: pending
|
2611
|
+
VersionAdded: '1.72'
|
2612
|
+
|
2574
2613
|
Lint/UselessDefined:
|
2575
2614
|
Description: 'Checks for calls to `defined?` with strings and symbols. The result of such a call will always be truthy.'
|
2576
2615
|
Enabled: pending
|
@@ -2958,6 +2997,7 @@ Naming/MethodName:
|
|
2958
2997
|
StyleGuide: '#snake-case-symbols-methods-vars'
|
2959
2998
|
Enabled: true
|
2960
2999
|
VersionAdded: '0.50'
|
3000
|
+
VersionChanged: '1.75'
|
2961
3001
|
EnforcedStyle: snake_case
|
2962
3002
|
SupportedStyles:
|
2963
3003
|
- snake_case
|
@@ -2969,6 +3009,10 @@ Naming/MethodName:
|
|
2969
3009
|
# - '\A\s*onSelectionCleared\s*'
|
2970
3010
|
#
|
2971
3011
|
AllowedPatterns: []
|
3012
|
+
ForbiddenIdentifiers:
|
3013
|
+
- __id__
|
3014
|
+
- __send__
|
3015
|
+
ForbiddenPatterns: []
|
2972
3016
|
|
2973
3017
|
Naming/MethodParameterName:
|
2974
3018
|
Description: >-
|
@@ -3005,17 +3049,19 @@ Naming/PredicateName:
|
|
3005
3049
|
StyleGuide: '#bool-methods-qmark'
|
3006
3050
|
Enabled: true
|
3007
3051
|
VersionAdded: '0.50'
|
3008
|
-
VersionChanged: '
|
3052
|
+
VersionChanged: '1.75'
|
3009
3053
|
# Predicate name prefixes.
|
3010
3054
|
NamePrefix:
|
3011
3055
|
- is_
|
3012
3056
|
- has_
|
3013
3057
|
- have_
|
3058
|
+
- does_
|
3014
3059
|
# Predicate name prefixes that should be removed.
|
3015
3060
|
ForbiddenPrefixes:
|
3016
3061
|
- is_
|
3017
3062
|
- has_
|
3018
3063
|
- have_
|
3064
|
+
- does_
|
3019
3065
|
# Predicate names which, despite having a forbidden prefix, or no `?`,
|
3020
3066
|
# should still be accepted
|
3021
3067
|
AllowedMethods:
|
@@ -3024,6 +3070,8 @@ Naming/PredicateName:
|
|
3024
3070
|
MethodDefinitionMacros:
|
3025
3071
|
- define_method
|
3026
3072
|
- define_singleton_method
|
3073
|
+
# Use Sorbet's T::Boolean return type to detect predicate methods.
|
3074
|
+
UseSorbetSigs: false
|
3027
3075
|
# Exclude Rspec specs because there is a strong convention to write spec
|
3028
3076
|
# helpers in the form of `have_something` or `be_something`.
|
3029
3077
|
Exclude:
|
@@ -3041,13 +3089,15 @@ Naming/VariableName:
|
|
3041
3089
|
StyleGuide: '#snake-case-symbols-methods-vars'
|
3042
3090
|
Enabled: true
|
3043
3091
|
VersionAdded: '0.50'
|
3044
|
-
VersionChanged: '1.
|
3092
|
+
VersionChanged: '1.73'
|
3045
3093
|
EnforcedStyle: snake_case
|
3046
3094
|
SupportedStyles:
|
3047
3095
|
- snake_case
|
3048
3096
|
- camelCase
|
3049
3097
|
AllowedIdentifiers: []
|
3050
3098
|
AllowedPatterns: []
|
3099
|
+
ForbiddenIdentifiers: []
|
3100
|
+
ForbiddenPatterns: []
|
3051
3101
|
|
3052
3102
|
Naming/VariableNumber:
|
3053
3103
|
Description: 'Use the configured style when numbering symbols, methods and variables.'
|
@@ -3063,6 +3113,8 @@ Naming/VariableNumber:
|
|
3063
3113
|
CheckMethodNames: true
|
3064
3114
|
CheckSymbols: true
|
3065
3115
|
AllowedIdentifiers:
|
3116
|
+
- TLS1_1 # OpenSSL::SSL::TLS1_1_VERSION
|
3117
|
+
- TLS1_2 # OpenSSL::SSL::TLS1_2_VERSION
|
3066
3118
|
- capture3 # Open3.capture3
|
3067
3119
|
- iso8601 # Time#iso8601
|
3068
3120
|
- rfc1123_date # CGI.rfc1123_date
|
@@ -3136,13 +3188,14 @@ Style/AccessModifierDeclarations:
|
|
3136
3188
|
Description: 'Checks style of how access modifiers are used.'
|
3137
3189
|
Enabled: true
|
3138
3190
|
VersionAdded: '0.57'
|
3139
|
-
VersionChanged: '
|
3191
|
+
VersionChanged: '1.70'
|
3140
3192
|
EnforcedStyle: group
|
3141
3193
|
SupportedStyles:
|
3142
3194
|
- inline
|
3143
3195
|
- group
|
3144
3196
|
AllowModifiersOnSymbols: true
|
3145
3197
|
AllowModifiersOnAttrs: true
|
3198
|
+
AllowModifiersOnAliasMethod: true
|
3146
3199
|
SafeAutoCorrect: false
|
3147
3200
|
|
3148
3201
|
Style/AccessorGrouping:
|
@@ -3457,6 +3510,7 @@ Style/ClassAndModuleChildren:
|
|
3457
3510
|
SafeAutoCorrect: false
|
3458
3511
|
Enabled: true
|
3459
3512
|
VersionAdded: '0.19'
|
3513
|
+
VersionChanged: '1.74'
|
3460
3514
|
#
|
3461
3515
|
# Basically there are two different styles:
|
3462
3516
|
#
|
@@ -3472,7 +3526,21 @@ Style/ClassAndModuleChildren:
|
|
3472
3526
|
#
|
3473
3527
|
# The compact style is only forced, for classes or modules with one child.
|
3474
3528
|
EnforcedStyle: nested
|
3475
|
-
SupportedStyles:
|
3529
|
+
SupportedStyles: &supported_styles
|
3530
|
+
- nested
|
3531
|
+
- compact
|
3532
|
+
# Configure classes separately, if desired. If not set, or set to `nil`,
|
3533
|
+
# the `EnforcedStyle` value will be used.
|
3534
|
+
EnforcedStyleForClasses: ~
|
3535
|
+
SupportedStylesForClasses:
|
3536
|
+
- ~
|
3537
|
+
- nested
|
3538
|
+
- compact
|
3539
|
+
# Configure modules separately, if desired. If not set, or set to `nil`,
|
3540
|
+
# the `EnforcedStyle` value will be used.
|
3541
|
+
EnforcedStyleForModules: ~
|
3542
|
+
SupportedStylesForModules:
|
3543
|
+
- ~
|
3476
3544
|
- nested
|
3477
3545
|
- compact
|
3478
3546
|
|
@@ -3625,6 +3693,12 @@ Style/CommentedKeyword:
|
|
3625
3693
|
VersionAdded: '0.51'
|
3626
3694
|
VersionChanged: '1.19'
|
3627
3695
|
|
3696
|
+
Style/ComparableBetween:
|
3697
|
+
Description: 'Enforces the use of `Comparable#between?` instead of logical comparison.'
|
3698
|
+
Enabled: pending
|
3699
|
+
VersionAdded: '1.74'
|
3700
|
+
StyleGuide: '#ranges-or-between'
|
3701
|
+
|
3628
3702
|
Style/ComparableClamp:
|
3629
3703
|
Description: 'Enforces the use of `Comparable#clamp` instead of comparison by minimum and maximum.'
|
3630
3704
|
Enabled: pending
|
@@ -3881,6 +3955,8 @@ Style/EndlessMethod:
|
|
3881
3955
|
- allow_single_line
|
3882
3956
|
- allow_always
|
3883
3957
|
- disallow
|
3958
|
+
- require_single_line
|
3959
|
+
- require_always
|
3884
3960
|
|
3885
3961
|
Style/EnvHome:
|
3886
3962
|
Description: "Checks for consistent usage of `ENV['HOME']`."
|
@@ -4025,8 +4101,14 @@ Style/FormatStringToken:
|
|
4025
4101
|
# style token in a format string to be allowed when enforced style is not
|
4026
4102
|
# `unannotated`.
|
4027
4103
|
MaxUnannotatedPlaceholdersAllowed: 1
|
4104
|
+
# The mode the cop operates in. Two values are allowed:
|
4105
|
+
# * aggressive (default): all strings are considered
|
4106
|
+
# * conservative:
|
4107
|
+
# only register offenses for strings given to `printf`, `sprintf`,
|
4108
|
+
# format` and `%` methods. Other strings are not considered.
|
4109
|
+
Mode: aggressive
|
4028
4110
|
VersionAdded: '0.49'
|
4029
|
-
VersionChanged: '1.
|
4111
|
+
VersionChanged: '1.74'
|
4030
4112
|
AllowedMethods: []
|
4031
4113
|
AllowedPatterns: []
|
4032
4114
|
|
@@ -4051,6 +4133,9 @@ Style/FrozenStringLiteralComment:
|
|
4051
4133
|
# exist in a file.
|
4052
4134
|
- never
|
4053
4135
|
SafeAutoCorrect: false
|
4136
|
+
Exclude:
|
4137
|
+
# Prevent the Ruby warning: `'frozen_string_literal' is ignored after any tokens` when using Active Admin.
|
4138
|
+
- '**/*.arb'
|
4054
4139
|
|
4055
4140
|
Style/GlobalStdStream:
|
4056
4141
|
Description: 'Enforces the use of `$stdout/$stderr/$stdin` instead of `STDOUT/STDERR/STDIN`.'
|
@@ -4119,6 +4204,12 @@ Style/HashExcept:
|
|
4119
4204
|
VersionAdded: '1.7'
|
4120
4205
|
VersionChanged: '1.39'
|
4121
4206
|
|
4207
|
+
Style/HashFetchChain:
|
4208
|
+
Description: 'Use `Hash#dig` instead of chained `fetch` calls.'
|
4209
|
+
Enabled: pending
|
4210
|
+
Safe: false
|
4211
|
+
VersionAdded: '1.75'
|
4212
|
+
|
4122
4213
|
Style/HashLikeCase:
|
4123
4214
|
Description: >-
|
4124
4215
|
Checks for places where `case-when` represents a simple 1:1
|
@@ -4129,6 +4220,14 @@ Style/HashLikeCase:
|
|
4129
4220
|
# to trigger this cop
|
4130
4221
|
MinBranchesCount: 3
|
4131
4222
|
|
4223
|
+
Style/HashSlice:
|
4224
|
+
Description: >-
|
4225
|
+
Checks for usages of `Hash#reject`, `Hash#select`, and `Hash#filter` methods
|
4226
|
+
that can be replaced with `Hash#slice` method.
|
4227
|
+
Enabled: pending
|
4228
|
+
Safe: false
|
4229
|
+
VersionAdded: '1.71'
|
4230
|
+
|
4132
4231
|
Style/HashSyntax:
|
4133
4232
|
Description: >-
|
4134
4233
|
Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
|
@@ -4316,6 +4415,21 @@ Style/IpAddresses:
|
|
4316
4415
|
- '**/gems.rb'
|
4317
4416
|
- '**/*.gemspec'
|
4318
4417
|
|
4418
|
+
Style/ItAssignment:
|
4419
|
+
Description: 'Checks for assignment to `it` inside a block.'
|
4420
|
+
Enabled: pending
|
4421
|
+
VersionAdded: '1.70'
|
4422
|
+
|
4423
|
+
Style/ItBlockParameter:
|
4424
|
+
Description: 'Checks for blocks with one argument where `it` block parameter can be used.'
|
4425
|
+
Enabled: pending
|
4426
|
+
EnforcedStyle: only_numbered_parameters
|
4427
|
+
SupportedStyles:
|
4428
|
+
- only_numbered_parameters
|
4429
|
+
- always
|
4430
|
+
- disallow
|
4431
|
+
VersionAdded: '1.75'
|
4432
|
+
|
4319
4433
|
Style/KeywordArgumentsMerging:
|
4320
4434
|
Description: >-
|
4321
4435
|
When passing an existing hash as keyword arguments, provide additional arguments
|
@@ -4704,7 +4818,7 @@ Style/Next:
|
|
4704
4818
|
StyleGuide: '#no-nested-conditionals'
|
4705
4819
|
Enabled: true
|
4706
4820
|
VersionAdded: '0.22'
|
4707
|
-
VersionChanged: '
|
4821
|
+
VersionChanged: '1.75'
|
4708
4822
|
# With `always` all conditions at the end of an iteration needs to be
|
4709
4823
|
# replaced by next - with `skip_modifier_ifs` the modifier if like this one
|
4710
4824
|
# are ignored: [1, 2].each { |a| return 'yes' if a == 1 }
|
@@ -4712,6 +4826,7 @@ Style/Next:
|
|
4712
4826
|
# `MinBodyLength` defines the number of lines of the a body of an `if` or `unless`
|
4713
4827
|
# needs to have to trigger this cop
|
4714
4828
|
MinBodyLength: 3
|
4829
|
+
AllowConsecutiveConditionals: false
|
4715
4830
|
SupportedStyles:
|
4716
4831
|
- skip_modifier_ifs
|
4717
4832
|
- always
|
@@ -5047,6 +5162,9 @@ Style/RedundantCondition:
|
|
5047
5162
|
Description: 'Checks for unnecessary conditional expressions.'
|
5048
5163
|
Enabled: true
|
5049
5164
|
VersionAdded: '0.76'
|
5165
|
+
VersionChanged: '1.73'
|
5166
|
+
AllowedMethods:
|
5167
|
+
- nonzero?
|
5050
5168
|
|
5051
5169
|
Style/RedundantConditional:
|
5052
5170
|
Description: "Don't return true/false from a conditional."
|
@@ -5059,7 +5177,7 @@ Style/RedundantConstantBase:
|
|
5059
5177
|
VersionAdded: '1.40'
|
5060
5178
|
|
5061
5179
|
Style/RedundantCurrentDirectoryInPath:
|
5062
|
-
Description: 'Checks for
|
5180
|
+
Description: 'Checks for a redundant current directory in a path given to `require_relative`.'
|
5063
5181
|
Enabled: pending
|
5064
5182
|
VersionAdded: '1.53'
|
5065
5183
|
|
@@ -5111,6 +5229,13 @@ Style/RedundantFilterChain:
|
|
5111
5229
|
VersionAdded: '1.52'
|
5112
5230
|
VersionChanged: '1.57'
|
5113
5231
|
|
5232
|
+
Style/RedundantFormat:
|
5233
|
+
Description: 'Checks for usages of `Kernel#format` or `Kernel#sprintf` with only a single argument.'
|
5234
|
+
Enabled: pending
|
5235
|
+
SafeAutoCorrect: false
|
5236
|
+
VersionAdded: '1.72'
|
5237
|
+
VersionChanged: '1.72'
|
5238
|
+
|
5114
5239
|
Style/RedundantFreeze:
|
5115
5240
|
Description: "Checks usages of Object#freeze on immutable objects."
|
5116
5241
|
Enabled: true
|
@@ -5637,14 +5762,17 @@ Style/TrailingCommaInArrayLiteral:
|
|
5637
5762
|
StyleGuide: '#no-trailing-array-commas'
|
5638
5763
|
Enabled: true
|
5639
5764
|
VersionAdded: '0.53'
|
5640
|
-
# If `comma`, the cop requires a comma after the last item in an array,
|
5641
|
-
#
|
5642
|
-
# If `consistent_comma`, the cop requires a comma after the last item of all
|
5643
|
-
#
|
5765
|
+
# If `comma`, the cop requires a comma after the last item in an array, but only when each item is
|
5766
|
+
# on its own line.
|
5767
|
+
# If `consistent_comma`, the cop requires a comma after the last item of all non-empty, multiline
|
5768
|
+
# array literals.
|
5769
|
+
# If `diff_comma`, the cop requires a comma after the last item of all non-empty, multiline array
|
5770
|
+
# literals, but only when that last item immediately precedes a newline.
|
5644
5771
|
EnforcedStyleForMultiline: no_comma
|
5645
5772
|
SupportedStylesForMultiline:
|
5646
5773
|
- comma
|
5647
5774
|
- consistent_comma
|
5775
|
+
- diff_comma
|
5648
5776
|
- no_comma
|
5649
5777
|
|
5650
5778
|
Style/TrailingCommaInBlockArgs:
|
@@ -5656,14 +5784,17 @@ Style/TrailingCommaInBlockArgs:
|
|
5656
5784
|
Style/TrailingCommaInHashLiteral:
|
5657
5785
|
Description: 'Checks for trailing comma in hash literals.'
|
5658
5786
|
Enabled: true
|
5659
|
-
# If `comma`, the cop requires a comma after the last item in a hash,
|
5660
|
-
#
|
5661
|
-
# If `consistent_comma`, the cop requires a comma after the last item of all
|
5662
|
-
#
|
5787
|
+
# If `comma`, the cop requires a comma after the last item in a hash, but only when each item is
|
5788
|
+
# on its own line.
|
5789
|
+
# If `consistent_comma`, the cop requires a comma after the last item of all non-empty, multiline
|
5790
|
+
# hash literals.
|
5791
|
+
# If `diff_comma`, the cop requires a comma after the last item of all non-empty, multiline hash
|
5792
|
+
# literals, but only when that last item immediately precedes a newline.
|
5663
5793
|
EnforcedStyleForMultiline: no_comma
|
5664
5794
|
SupportedStylesForMultiline:
|
5665
5795
|
- comma
|
5666
5796
|
- consistent_comma
|
5797
|
+
- diff_comma
|
5667
5798
|
- no_comma
|
5668
5799
|
VersionAdded: '0.53'
|
5669
5800
|
|
data/config/internal_affairs.yml
CHANGED
@@ -6,6 +6,26 @@ InternalAffairs/CopDescription:
|
|
6
6
|
Include:
|
7
7
|
- 'lib/rubocop/cop/**/*.rb'
|
8
8
|
|
9
|
+
InternalAffairs/ExampleHeredocDelimiter:
|
10
|
+
Include:
|
11
|
+
- 'spec/rubocop/cop/**/*.rb'
|
12
|
+
|
13
|
+
InternalAffairs/ExampleDescription:
|
14
|
+
Include:
|
15
|
+
- 'spec/rubocop/cop/**/*.rb'
|
16
|
+
|
17
|
+
InternalAffairs/NodeTypeGroup:
|
18
|
+
Include:
|
19
|
+
- 'lib/rubocop/cop/**/*.rb'
|
20
|
+
|
21
|
+
InternalAffairs/OnSendWithoutOnCSend:
|
22
|
+
Include:
|
23
|
+
- 'lib/rubocop/cop/**/*.rb'
|
24
|
+
|
25
|
+
InternalAffairs/UndefinedConfig:
|
26
|
+
Include:
|
27
|
+
- 'lib/rubocop/cop/**/*.rb'
|
28
|
+
|
9
29
|
InternalAffairs/UselessMessageAssertion:
|
10
30
|
Include:
|
11
31
|
- '**/*_spec.rb'
|
data/config/obsoletion.yml
CHANGED
@@ -43,7 +43,9 @@ renamed:
|
|
43
43
|
Style/MethodCallParentheses: Style/MethodCallWithoutArgsParentheses
|
44
44
|
Style/MethodName: Naming/MethodName
|
45
45
|
Style/OpMethod: Naming/BinaryOperatorParameterName
|
46
|
-
Style/PredicateName:
|
46
|
+
Style/PredicateName:
|
47
|
+
new_name: Naming/PredicateName
|
48
|
+
severity: warning
|
47
49
|
Style/SingleSpaceBeforeFirstArg: Layout/SpaceBeforeFirstArg
|
48
50
|
Style/UnneededCapitalW: Style/RedundantCapitalW
|
49
51
|
Style/UnneededCondition: Style/RedundantCondition
|
@@ -71,11 +71,11 @@ module RuboCop
|
|
71
71
|
|
72
72
|
warn Rainbow("\n#{pluralize(errors.size, 'error')} occurred:").red
|
73
73
|
|
74
|
-
errors.each { |error| warn error }
|
74
|
+
errors.each { |error| warn Rainbow(error).red }
|
75
75
|
|
76
|
-
warn <<~WARNING
|
76
|
+
warn Rainbow(<<~WARNING.strip).yellow
|
77
77
|
Errors are usually caused by RuboCop bugs.
|
78
|
-
Please,
|
78
|
+
Please, update to the latest RuboCop version if not already in use, and report a bug if the issue still occurs on this version.
|
79
79
|
#{bug_tracker_uri}
|
80
80
|
Mention the following information in the issue report:
|
81
81
|
#{RuboCop::Version.verbose}
|
@@ -9,11 +9,31 @@ module RuboCop
|
|
9
9
|
class ShowCops < Base
|
10
10
|
self.command_name = :show_cops
|
11
11
|
|
12
|
+
ExactMatcher = Struct.new(:pattern) do
|
13
|
+
def match?(name)
|
14
|
+
name == pattern
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
WildcardMatcher = Struct.new(:pattern) do
|
19
|
+
def match?(name)
|
20
|
+
File.fnmatch(pattern, name, File::FNM_PATHNAME)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
12
24
|
def initialize(env)
|
13
25
|
super
|
14
26
|
|
15
27
|
# Load the configs so the require()s are done for custom cops
|
16
28
|
@config = @config_store.for(Dir.pwd)
|
29
|
+
|
30
|
+
@cop_matchers = @options[:show_cops].map do |pattern|
|
31
|
+
if pattern.include?('*')
|
32
|
+
WildcardMatcher.new(pattern)
|
33
|
+
else
|
34
|
+
ExactMatcher.new(pattern)
|
35
|
+
end
|
36
|
+
end
|
17
37
|
end
|
18
38
|
|
19
39
|
def run
|
@@ -24,7 +44,7 @@ module RuboCop
|
|
24
44
|
|
25
45
|
def print_available_cops
|
26
46
|
registry = Cop::Registry.global
|
27
|
-
show_all = @
|
47
|
+
show_all = @cop_matchers.empty?
|
28
48
|
|
29
49
|
puts "# Available cops (#{registry.length}) + config for #{Dir.pwd}: " if show_all
|
30
50
|
|
@@ -56,7 +76,9 @@ module RuboCop
|
|
56
76
|
|
57
77
|
def selected_cops_of_department(cops, department)
|
58
78
|
cops_of_department(cops, department).select do |cop|
|
59
|
-
@
|
79
|
+
@cop_matchers.any? do |matcher|
|
80
|
+
matcher.match?(cop.cop_name)
|
81
|
+
end
|
60
82
|
end
|
61
83
|
end
|
62
84
|
|
@@ -97,7 +97,13 @@ module RuboCop
|
|
97
97
|
end
|
98
98
|
|
99
99
|
def loaded_extensions
|
100
|
-
@config_store.for_pwd
|
100
|
+
rubocop_config = @config_store.for_pwd
|
101
|
+
|
102
|
+
plugin_names = rubocop_config.loaded_plugins.map do |plugin|
|
103
|
+
plugin.about.name
|
104
|
+
end
|
105
|
+
|
106
|
+
plugin_names + rubocop_config.loaded_features.to_a
|
101
107
|
end
|
102
108
|
|
103
109
|
def installed_and_not_loaded_extensions
|
data/lib/rubocop/cli.rb
CHANGED
@@ -87,7 +87,7 @@ module RuboCop
|
|
87
87
|
next unless directive.enabled?
|
88
88
|
next if directive.all_cops?
|
89
89
|
|
90
|
-
cops.merge(directive.
|
90
|
+
cops.merge(directive.raw_cop_names)
|
91
91
|
end
|
92
92
|
cops
|
93
93
|
end
|
@@ -205,7 +205,7 @@ module RuboCop
|
|
205
205
|
directive.cop_names.each do |name|
|
206
206
|
if directive.disabled?
|
207
207
|
names[name] += 1
|
208
|
-
elsif
|
208
|
+
elsif names[name].positive?
|
209
209
|
names[name] -= 1
|
210
210
|
else
|
211
211
|
extras[directive.comment] << name
|