rubocop 1.34.1 → 1.54.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +4 -4
- data/config/default.yml +345 -54
- data/exe/rubocop +1 -1
- data/lib/rubocop/arguments_env.rb +17 -0
- data/lib/rubocop/arguments_file.rb +17 -0
- data/lib/rubocop/cli/command/{auto_genenerate_config.rb → auto_generate_config.rb} +7 -0
- data/lib/rubocop/cli/command/execute_runner.rb +14 -9
- data/lib/rubocop/cli/command/lsp.rb +19 -0
- data/lib/rubocop/cli/command/suggest_extensions.rb +8 -1
- data/lib/rubocop/cli.rb +58 -9
- data/lib/rubocop/comment_config.rb +60 -1
- data/lib/rubocop/config.rb +47 -19
- data/lib/rubocop/config_loader.rb +34 -28
- data/lib/rubocop/config_loader_resolver.rb +6 -2
- data/lib/rubocop/config_obsoletion.rb +2 -2
- data/lib/rubocop/config_validator.rb +1 -1
- data/lib/rubocop/cop/autocorrect_logic.rb +29 -13
- data/lib/rubocop/cop/badge.rb +9 -4
- data/lib/rubocop/cop/base.rb +115 -83
- data/lib/rubocop/cop/bundler/gem_comment.rb +2 -2
- data/lib/rubocop/cop/bundler/gem_version.rb +2 -2
- data/lib/rubocop/cop/commissioner.rb +19 -6
- data/lib/rubocop/cop/cop.rb +53 -33
- data/lib/rubocop/cop/corrector.rb +31 -11
- data/lib/rubocop/cop/correctors/alignment_corrector.rb +3 -3
- data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +3 -3
- data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +3 -3
- data/lib/rubocop/cop/correctors/line_break_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +23 -7
- data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +2 -7
- data/lib/rubocop/cop/correctors/parentheses_corrector.rb +32 -2
- data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +2 -2
- data/lib/rubocop/cop/gemspec/dependency_version.rb +19 -21
- data/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +1 -1
- data/lib/rubocop/cop/gemspec/development_dependencies.rb +107 -0
- data/lib/rubocop/cop/gemspec/require_mfa.rb +1 -1
- data/lib/rubocop/cop/generator/require_file_injector.rb +2 -2
- data/lib/rubocop/cop/generator.rb +1 -2
- data/lib/rubocop/cop/internal_affairs/cop_description.rb +38 -12
- data/lib/rubocop/cop/internal_affairs/create_empty_file.rb +37 -0
- data/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
- data/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +46 -0
- data/lib/rubocop/cop/internal_affairs/location_expression.rb +37 -0
- data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +6 -6
- data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
- data/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +42 -0
- data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +11 -3
- data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +66 -0
- data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +5 -4
- data/lib/rubocop/cop/internal_affairs.rb +7 -0
- data/lib/rubocop/cop/layout/array_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/block_alignment.rb +16 -12
- data/lib/rubocop/cop/layout/block_end_newline.rb +9 -15
- data/lib/rubocop/cop/layout/class_structure.rb +44 -27
- data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +2 -3
- data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +2 -6
- data/lib/rubocop/cop/layout/comment_indentation.rb +3 -1
- data/lib/rubocop/cop/layout/empty_comment.rb +3 -3
- data/lib/rubocop/cop/layout/empty_line_between_defs.rb +28 -5
- data/lib/rubocop/cop/layout/empty_lines.rb +3 -1
- data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +7 -2
- data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +2 -0
- data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +2 -0
- data/lib/rubocop/cop/layout/end_alignment.rb +9 -1
- data/lib/rubocop/cop/layout/end_of_line.rb +4 -4
- data/lib/rubocop/cop/layout/extra_spacing.rb +15 -6
- data/lib/rubocop/cop/layout/first_argument_indentation.rb +9 -3
- data/lib/rubocop/cop/layout/first_array_element_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/first_array_element_line_break.rb +35 -8
- data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +36 -1
- data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +57 -8
- data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +52 -19
- data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +10 -4
- data/lib/rubocop/cop/layout/heredoc_indentation.rb +8 -11
- data/lib/rubocop/cop/layout/indentation_style.rb +8 -3
- data/lib/rubocop/cop/layout/indentation_width.rb +8 -4
- data/lib/rubocop/cop/layout/initial_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/leading_comment_space.rb +1 -1
- data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +33 -9
- data/lib/rubocop/cop/layout/line_continuation_spacing.rb +18 -8
- data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +2 -0
- data/lib/rubocop/cop/layout/line_length.rb +6 -1
- data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +31 -1
- data/lib/rubocop/cop/layout/multiline_block_layout.rb +3 -1
- data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +29 -1
- data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +35 -1
- data/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +33 -1
- data/lib/rubocop/cop/layout/redundant_line_break.rb +10 -11
- data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +2 -2
- data/lib/rubocop/cop/layout/space_around_block_parameters.rb +1 -1
- data/lib/rubocop/cop/layout/space_around_keyword.rb +3 -3
- data/lib/rubocop/cop/layout/space_around_operators.rb +4 -2
- data/lib/rubocop/cop/layout/space_before_block_braces.rb +2 -0
- data/lib/rubocop/cop/layout/space_before_first_arg.rb +1 -1
- data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +2 -2
- data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +22 -20
- data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +3 -0
- data/lib/rubocop/cop/layout/space_inside_block_braces.rb +27 -9
- data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +30 -3
- data/lib/rubocop/cop/layout/space_inside_parens.rb +2 -2
- data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +34 -0
- data/lib/rubocop/cop/layout/space_inside_range_literal.rb +1 -1
- data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +10 -6
- data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +5 -4
- data/lib/rubocop/cop/layout/trailing_empty_lines.rb +1 -1
- data/lib/rubocop/cop/layout/trailing_whitespace.rb +12 -5
- data/lib/rubocop/cop/lint/ambiguous_block_association.rb +16 -4
- data/lib/rubocop/cop/lint/ambiguous_operator.rb +4 -0
- data/lib/rubocop/cop/lint/assignment_in_condition.rb +11 -1
- data/lib/rubocop/cop/lint/constant_resolution.rb +5 -1
- data/lib/rubocop/cop/lint/debugger.rb +16 -26
- data/lib/rubocop/cop/lint/deprecated_class_methods.rb +62 -112
- data/lib/rubocop/cop/lint/deprecated_constants.rb +8 -1
- data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_branch.rb +0 -2
- data/lib/rubocop/cop/lint/duplicate_hash_key.rb +2 -1
- data/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
- data/lib/rubocop/cop/lint/duplicate_match_pattern.rb +122 -0
- data/lib/rubocop/cop/lint/duplicate_methods.rb +48 -18
- data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +55 -11
- data/lib/rubocop/cop/lint/duplicate_require.rb +1 -1
- data/lib/rubocop/cop/lint/else_layout.rb +3 -7
- data/lib/rubocop/cop/lint/empty_block.rb +3 -7
- data/lib/rubocop/cop/lint/empty_class.rb +3 -1
- data/lib/rubocop/cop/lint/empty_conditional_body.rb +51 -7
- data/lib/rubocop/cop/lint/empty_interpolation.rb +1 -1
- data/lib/rubocop/cop/lint/erb_new_arguments.rb +12 -13
- data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +14 -7
- data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +16 -18
- data/lib/rubocop/cop/lint/identity_comparison.rb +0 -1
- data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +1 -1
- data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +5 -3
- data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +1 -1
- data/lib/rubocop/cop/lint/inherit_exception.rb +9 -0
- data/lib/rubocop/cop/lint/interpolation_check.rb +4 -3
- data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +1 -1
- data/lib/rubocop/cop/lint/literal_in_interpolation.rb +48 -2
- data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +18 -3
- data/lib/rubocop/cop/lint/missing_super.rb +63 -5
- data/lib/rubocop/cop/lint/mixed_case_range.rb +111 -0
- data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +1 -0
- data/lib/rubocop/cop/lint/nested_method_definition.rb +53 -9
- data/lib/rubocop/cop/lint/next_without_accumulator.rb +25 -6
- data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +15 -10
- data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +12 -0
- data/lib/rubocop/cop/lint/number_conversion.rb +6 -1
- data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +2 -2
- data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +2 -0
- data/lib/rubocop/cop/lint/ordered_magic_comments.rb +4 -6
- data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +17 -2
- data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +5 -0
- data/lib/rubocop/cop/lint/percent_string_array.rb +1 -1
- data/lib/rubocop/cop/lint/percent_symbol_array.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +49 -9
- data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +6 -6
- data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +7 -0
- data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +120 -0
- data/lib/rubocop/cop/lint/redundant_require_statement.rb +53 -10
- data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +9 -3
- data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_string_coercion.rb +35 -15
- data/lib/rubocop/cop/lint/redundant_with_index.rb +14 -11
- data/lib/rubocop/cop/lint/redundant_with_object.rb +13 -12
- data/lib/rubocop/cop/lint/refinement_import_methods.rb +2 -1
- data/lib/rubocop/cop/lint/regexp_as_condition.rb +6 -0
- data/lib/rubocop/cop/lint/require_parentheses.rb +3 -1
- data/lib/rubocop/cop/lint/rescue_type.rb +3 -3
- data/lib/rubocop/cop/lint/safe_navigation_chain.rb +13 -14
- data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +1 -1
- data/lib/rubocop/cop/lint/script_permission.rb +1 -1
- data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +6 -6
- data/lib/rubocop/cop/lint/shadowed_exception.rb +7 -23
- data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +19 -2
- data/lib/rubocop/cop/lint/suppressed_exception.rb +2 -2
- data/lib/rubocop/cop/lint/symbol_conversion.rb +1 -1
- data/lib/rubocop/cop/lint/syntax.rb +4 -0
- data/lib/rubocop/cop/lint/to_enum_arguments.rb +13 -3
- data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +23 -9
- data/lib/rubocop/cop/lint/unreachable_loop.rb +12 -6
- data/lib/rubocop/cop/lint/unused_method_argument.rb +6 -1
- data/lib/rubocop/cop/lint/useless_access_modifier.rb +17 -12
- data/lib/rubocop/cop/lint/useless_assignment.rb +59 -1
- data/lib/rubocop/cop/lint/useless_method_definition.rb +12 -4
- data/lib/rubocop/cop/lint/useless_rescue.rb +89 -0
- data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +15 -5
- data/lib/rubocop/cop/lint/useless_times.rb +1 -1
- data/lib/rubocop/cop/lint/void.rb +86 -21
- data/lib/rubocop/cop/metrics/abc_size.rb +1 -1
- data/lib/rubocop/cop/metrics/block_length.rb +10 -5
- data/lib/rubocop/cop/metrics/block_nesting.rb +2 -2
- data/lib/rubocop/cop/metrics/class_length.rb +11 -5
- data/lib/rubocop/cop/metrics/collection_literal_length.rb +76 -0
- data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +1 -1
- data/lib/rubocop/cop/metrics/method_length.rb +9 -4
- data/lib/rubocop/cop/metrics/module_length.rb +10 -5
- data/lib/rubocop/cop/metrics/parameter_lists.rb +27 -0
- data/lib/rubocop/cop/metrics/perceived_complexity.rb +1 -1
- data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +4 -8
- data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +39 -8
- data/lib/rubocop/cop/migration/department_name.rb +3 -3
- data/lib/rubocop/cop/mixin/alignment.rb +2 -2
- data/lib/rubocop/cop/mixin/allowed_identifiers.rb +2 -2
- data/lib/rubocop/cop/mixin/allowed_methods.rb +13 -6
- data/lib/rubocop/cop/mixin/allowed_pattern.rb +13 -5
- data/lib/rubocop/cop/mixin/allowed_receivers.rb +34 -0
- data/lib/rubocop/cop/mixin/annotation_comment.rb +14 -7
- data/lib/rubocop/cop/mixin/check_line_breakable.rb +1 -1
- data/lib/rubocop/cop/mixin/code_length.rb +1 -1
- data/lib/rubocop/cop/mixin/comments_help.rb +24 -6
- data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +21 -9
- data/lib/rubocop/cop/mixin/documentation_comment.rb +1 -1
- data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -1
- data/lib/rubocop/cop/mixin/first_element_line_break.rb +11 -7
- data/lib/rubocop/cop/mixin/frozen_string_literal.rb +4 -0
- data/lib/rubocop/cop/mixin/hash_alignment_styles.rb +1 -1
- data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +152 -12
- data/lib/rubocop/cop/mixin/hash_transform_method.rb +13 -9
- data/lib/rubocop/cop/mixin/heredoc.rb +6 -2
- data/lib/rubocop/cop/mixin/line_length_help.rb +11 -2
- data/lib/rubocop/cop/mixin/method_complexity.rb +9 -7
- data/lib/rubocop/cop/mixin/min_branches_count.rb +40 -0
- data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +1 -1
- data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +5 -6
- data/lib/rubocop/cop/mixin/ordered_gem_node.rb +1 -1
- data/lib/rubocop/cop/mixin/percent_array.rb +3 -5
- data/lib/rubocop/cop/mixin/percent_literal.rb +1 -1
- data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +1 -1
- data/lib/rubocop/cop/mixin/range_help.rb +20 -3
- data/lib/rubocop/cop/mixin/require_library.rb +2 -0
- data/lib/rubocop/cop/mixin/rescue_node.rb +5 -3
- data/lib/rubocop/cop/mixin/space_after_punctuation.rb +1 -1
- data/lib/rubocop/cop/mixin/statement_modifier.rb +18 -3
- data/lib/rubocop/cop/mixin/surrounding_space.rb +13 -11
- data/lib/rubocop/cop/mixin/trailing_comma.rb +2 -2
- data/lib/rubocop/cop/mixin/visibility_help.rb +40 -5
- data/lib/rubocop/cop/naming/ascii_identifiers.rb +1 -1
- data/lib/rubocop/cop/naming/block_forwarding.rb +6 -2
- data/lib/rubocop/cop/naming/block_parameter_name.rb +1 -1
- data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +3 -1
- data/lib/rubocop/cop/naming/constant_name.rb +3 -3
- data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +1 -1
- data/lib/rubocop/cop/naming/inclusive_language.rb +28 -6
- data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +25 -10
- data/lib/rubocop/cop/naming/method_name.rb +3 -3
- data/lib/rubocop/cop/naming/predicate_name.rb +1 -1
- data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +12 -4
- data/lib/rubocop/cop/naming/variable_name.rb +6 -1
- data/lib/rubocop/cop/registry.rb +73 -45
- data/lib/rubocop/cop/security/compound_hash.rb +2 -1
- data/lib/rubocop/cop/style/access_modifier_declarations.rb +92 -3
- data/lib/rubocop/cop/style/accessor_grouping.rb +50 -20
- data/lib/rubocop/cop/style/alias.rb +9 -1
- data/lib/rubocop/cop/style/arguments_forwarding.rb +6 -5
- data/lib/rubocop/cop/style/array_intersect.rb +111 -0
- data/lib/rubocop/cop/style/ascii_comments.rb +1 -1
- data/lib/rubocop/cop/style/attr.rb +11 -1
- data/lib/rubocop/cop/style/begin_block.rb +1 -2
- data/lib/rubocop/cop/style/bisected_attr_accessor.rb +1 -1
- data/lib/rubocop/cop/style/block_comments.rb +3 -3
- data/lib/rubocop/cop/style/block_delimiters.rb +22 -7
- data/lib/rubocop/cop/style/case_equality.rb +40 -10
- data/lib/rubocop/cop/style/case_like_if.rb +20 -3
- data/lib/rubocop/cop/style/character_literal.rb +1 -1
- data/lib/rubocop/cop/style/class_and_module_children.rb +5 -12
- data/lib/rubocop/cop/style/class_equality_comparison.rb +58 -45
- data/lib/rubocop/cop/style/class_methods_definitions.rb +2 -1
- data/lib/rubocop/cop/style/collection_compact.rb +27 -5
- data/lib/rubocop/cop/style/collection_methods.rb +2 -0
- data/lib/rubocop/cop/style/colon_method_call.rb +2 -2
- data/lib/rubocop/cop/style/combinable_loops.rb +29 -7
- data/lib/rubocop/cop/style/command_literal.rb +1 -1
- data/lib/rubocop/cop/style/comment_annotation.rb +1 -1
- data/lib/rubocop/cop/style/commented_keyword.rb +2 -2
- data/lib/rubocop/cop/style/comparable_clamp.rb +125 -0
- data/lib/rubocop/cop/style/concat_array_literals.rb +94 -0
- data/lib/rubocop/cop/style/conditional_assignment.rb +11 -15
- data/lib/rubocop/cop/style/copyright.rb +6 -3
- data/lib/rubocop/cop/style/data_inheritance.rb +75 -0
- data/lib/rubocop/cop/style/dir.rb +1 -1
- data/lib/rubocop/cop/style/dir_empty.rb +54 -0
- data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +2 -2
- data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +3 -3
- data/lib/rubocop/cop/style/documentation.rb +22 -10
- data/lib/rubocop/cop/style/documentation_method.rb +10 -4
- data/lib/rubocop/cop/style/double_negation.rb +2 -2
- data/lib/rubocop/cop/style/each_for_simple_loop.rb +41 -6
- data/lib/rubocop/cop/style/each_with_object.rb +40 -9
- data/lib/rubocop/cop/style/empty_block_parameter.rb +2 -2
- data/lib/rubocop/cop/style/empty_lambda_parameter.rb +2 -2
- data/lib/rubocop/cop/style/empty_method.rb +1 -1
- data/lib/rubocop/cop/style/endless_method.rb +1 -1
- data/lib/rubocop/cop/style/eval_with_location.rb +8 -8
- data/lib/rubocop/cop/style/exact_regexp_match.rb +68 -0
- data/lib/rubocop/cop/style/explicit_block_argument.rb +5 -1
- data/lib/rubocop/cop/style/file_empty.rb +71 -0
- data/lib/rubocop/cop/style/file_read.rb +3 -3
- data/lib/rubocop/cop/style/file_write.rb +1 -1
- data/lib/rubocop/cop/style/for.rb +2 -0
- data/lib/rubocop/cop/style/format_string_token.rb +1 -1
- data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +1 -1
- data/lib/rubocop/cop/style/guard_clause.rb +127 -38
- data/lib/rubocop/cop/style/hash_as_last_array_item.rb +1 -0
- data/lib/rubocop/cop/style/hash_each_methods.rb +36 -21
- data/lib/rubocop/cop/style/hash_except.rb +27 -12
- data/lib/rubocop/cop/style/hash_like_case.rb +3 -9
- data/lib/rubocop/cop/style/hash_syntax.rb +26 -2
- data/lib/rubocop/cop/style/hash_transform_keys.rb +2 -2
- data/lib/rubocop/cop/style/hash_transform_values.rb +2 -2
- data/lib/rubocop/cop/style/identical_conditional_branches.rb +21 -2
- data/lib/rubocop/cop/style/if_inside_else.rb +6 -0
- data/lib/rubocop/cop/style/if_unless_modifier.rb +111 -15
- data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +27 -2
- data/lib/rubocop/cop/style/if_with_semicolon.rb +6 -6
- data/lib/rubocop/cop/style/infinite_loop.rb +2 -5
- data/lib/rubocop/cop/style/inverse_methods.rb +15 -11
- data/lib/rubocop/cop/style/invertible_unless_condition.rb +118 -0
- data/lib/rubocop/cop/style/lambda.rb +3 -3
- data/lib/rubocop/cop/style/line_end_concatenation.rb +4 -1
- data/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
- data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +2 -2
- data/lib/rubocop/cop/style/map_to_hash.rb +4 -1
- data/lib/rubocop/cop/style/map_to_set.rb +64 -0
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +41 -26
- data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +44 -37
- data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +2 -0
- data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +4 -1
- data/lib/rubocop/cop/style/method_def_parentheses.rb +11 -4
- data/lib/rubocop/cop/style/min_max.rb +3 -3
- data/lib/rubocop/cop/style/min_max_comparison.rb +83 -0
- data/lib/rubocop/cop/style/missing_else.rb +13 -1
- data/lib/rubocop/cop/style/mixin_grouping.rb +4 -4
- data/lib/rubocop/cop/style/module_function.rb +28 -6
- data/lib/rubocop/cop/style/multiline_block_chain.rb +3 -1
- data/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -4
- data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +1 -1
- data/lib/rubocop/cop/style/multiline_memoization.rb +2 -2
- data/lib/rubocop/cop/style/multiline_method_signature.rb +7 -4
- data/lib/rubocop/cop/style/multiline_ternary_operator.rb +18 -3
- data/lib/rubocop/cop/style/multiple_comparison.rb +14 -0
- data/lib/rubocop/cop/style/negated_if_else_condition.rb +17 -10
- data/lib/rubocop/cop/style/next.rb +3 -5
- data/lib/rubocop/cop/style/nil_lambda.rb +4 -4
- data/lib/rubocop/cop/style/numbered_parameters_limit.rb +11 -3
- data/lib/rubocop/cop/style/numeric_literals.rb +1 -1
- data/lib/rubocop/cop/style/numeric_predicate.rb +1 -1
- data/lib/rubocop/cop/style/object_then.rb +5 -0
- data/lib/rubocop/cop/style/one_line_conditional.rb +3 -6
- data/lib/rubocop/cop/style/operator_method_call.rb +67 -0
- data/lib/rubocop/cop/style/parallel_assignment.rb +29 -19
- data/lib/rubocop/cop/style/percent_literal_delimiters.rb +2 -3
- data/lib/rubocop/cop/style/percent_q_literals.rb +1 -1
- data/lib/rubocop/cop/style/perl_backrefs.rb +22 -1
- data/lib/rubocop/cop/style/preferred_hash_methods.rb +1 -1
- data/lib/rubocop/cop/style/proc.rb +4 -1
- data/lib/rubocop/cop/style/quoted_symbols.rb +1 -1
- data/lib/rubocop/cop/style/redundant_argument.rb +3 -0
- data/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
- data/lib/rubocop/cop/style/redundant_begin.rb +4 -1
- data/lib/rubocop/cop/style/redundant_condition.rb +22 -4
- data/lib/rubocop/cop/style/redundant_conditional.rb +1 -5
- data/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
- data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +38 -0
- data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +45 -0
- data/lib/rubocop/cop/style/redundant_each.rb +116 -0
- data/lib/rubocop/cop/style/redundant_fetch_block.rb +7 -5
- data/lib/rubocop/cop/style/redundant_filter_chain.rb +101 -0
- data/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +58 -0
- data/lib/rubocop/cop/style/redundant_initialize.rb +3 -1
- data/lib/rubocop/cop/style/redundant_interpolation.rb +2 -2
- data/lib/rubocop/cop/style/redundant_line_continuation.rb +183 -0
- data/lib/rubocop/cop/style/redundant_parentheses.rb +7 -3
- data/lib/rubocop/cop/style/redundant_percent_q.rb +1 -1
- data/lib/rubocop/cop/style/redundant_regexp_argument.rb +99 -0
- data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +9 -3
- data/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
- data/lib/rubocop/cop/style/redundant_regexp_escape.rb +22 -4
- data/lib/rubocop/cop/style/redundant_return.rb +7 -0
- data/lib/rubocop/cop/style/redundant_self.rb +2 -0
- data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +3 -1
- data/lib/rubocop/cop/style/redundant_sort.rb +5 -5
- data/lib/rubocop/cop/style/redundant_sort_by.rb +24 -8
- data/lib/rubocop/cop/style/redundant_string_escape.rb +185 -0
- data/lib/rubocop/cop/style/regexp_literal.rb +11 -2
- data/lib/rubocop/cop/style/require_order.rb +139 -0
- data/lib/rubocop/cop/style/rescue_modifier.rb +2 -4
- data/lib/rubocop/cop/style/rescue_standard_error.rb +2 -2
- data/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +81 -0
- data/lib/rubocop/cop/style/safe_navigation.rb +41 -10
- data/lib/rubocop/cop/style/select_by_regexp.rb +23 -5
- data/lib/rubocop/cop/style/self_assignment.rb +2 -2
- data/lib/rubocop/cop/style/semicolon.rb +37 -3
- data/lib/rubocop/cop/style/signal_exception.rb +9 -7
- data/lib/rubocop/cop/style/single_line_block_params.rb +1 -1
- data/lib/rubocop/cop/style/single_line_methods.rb +1 -1
- data/lib/rubocop/cop/style/slicing_with_range.rb +1 -1
- data/lib/rubocop/cop/style/sole_nested_conditional.rb +6 -6
- data/lib/rubocop/cop/style/special_global_vars.rb +3 -4
- data/lib/rubocop/cop/style/static_class.rb +32 -1
- data/lib/rubocop/cop/style/stderr_puts.rb +1 -1
- data/lib/rubocop/cop/style/string_hash_keys.rb +4 -1
- data/lib/rubocop/cop/style/string_literals.rb +1 -5
- data/lib/rubocop/cop/style/struct_inheritance.rb +1 -1
- data/lib/rubocop/cop/style/symbol_array.rb +4 -2
- data/lib/rubocop/cop/style/symbol_proc.rb +8 -9
- data/lib/rubocop/cop/style/top_level_method_definition.rb +3 -1
- data/lib/rubocop/cop/style/trailing_body_on_class.rb +1 -0
- data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +4 -4
- data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +1 -1
- data/lib/rubocop/cop/style/trailing_underscore_variable.rb +1 -1
- data/lib/rubocop/cop/style/trivial_accessors.rb +1 -1
- data/lib/rubocop/cop/style/unless_logical_operators.rb +1 -0
- data/lib/rubocop/cop/style/unpack_first.rb +3 -3
- data/lib/rubocop/cop/style/word_array.rb +57 -2
- data/lib/rubocop/cop/style/yaml_file_read.rb +66 -0
- data/lib/rubocop/cop/style/yoda_condition.rb +17 -8
- data/lib/rubocop/cop/style/yoda_expression.rb +90 -0
- data/lib/rubocop/cop/style/zero_length_predicate.rb +40 -19
- data/lib/rubocop/cop/team.rb +63 -56
- data/lib/rubocop/cop/util.rb +45 -9
- data/lib/rubocop/cop/utils/regexp_ranges.rb +100 -0
- data/lib/rubocop/cop/variable_force/assignment.rb +34 -2
- data/lib/rubocop/cop/variable_force/scope.rb +3 -3
- data/lib/rubocop/cop/variable_force/variable.rb +5 -3
- data/lib/rubocop/cop/variable_force/variable_table.rb +6 -4
- data/lib/rubocop/cop/variable_force.rb +19 -30
- data/lib/rubocop/cops_documentation_generator.rb +45 -15
- data/lib/rubocop/directive_comment.rb +4 -4
- data/lib/rubocop/ext/comment.rb +18 -0
- data/lib/rubocop/ext/processed_source.rb +2 -0
- data/lib/rubocop/ext/regexp_node.rb +1 -1
- data/lib/rubocop/ext/regexp_parser.rb +5 -2
- data/lib/rubocop/feature_loader.rb +6 -2
- data/lib/rubocop/file_patterns.rb +43 -0
- data/lib/rubocop/formatter/disabled_config_formatter.rb +25 -8
- data/lib/rubocop/formatter/html_formatter.rb +3 -3
- data/lib/rubocop/formatter/junit_formatter.rb +4 -1
- data/lib/rubocop/formatter/offense_count_formatter.rb +8 -5
- data/lib/rubocop/formatter/simple_text_formatter.rb +1 -1
- data/lib/rubocop/formatter/worst_offenders_formatter.rb +6 -3
- data/lib/rubocop/formatter.rb +4 -1
- data/lib/rubocop/lsp/logger.rb +22 -0
- data/lib/rubocop/lsp/routes.rb +231 -0
- data/lib/rubocop/lsp/runtime.rb +82 -0
- data/lib/rubocop/lsp/server.rb +66 -0
- data/lib/rubocop/lsp/severity.rb +27 -0
- data/lib/rubocop/options.rb +63 -17
- data/lib/rubocop/path_util.rb +50 -22
- data/lib/rubocop/result_cache.rb +4 -4
- data/lib/rubocop/rspec/cop_helper.rb +26 -3
- data/lib/rubocop/rspec/expect_offense.rb +6 -4
- data/lib/rubocop/rspec/shared_contexts.rb +18 -1
- data/lib/rubocop/rspec/support.rb +3 -2
- data/lib/rubocop/runner.rb +69 -18
- data/lib/rubocop/server/cache.rb +24 -10
- data/lib/rubocop/server/cli.rb +45 -19
- data/lib/rubocop/server/client_command/exec.rb +8 -2
- data/lib/rubocop/server/client_command/start.rb +6 -1
- data/lib/rubocop/server/core.rb +42 -10
- data/lib/rubocop/server/helper.rb +1 -1
- data/lib/rubocop/server/server_command/exec.rb +1 -1
- data/lib/rubocop/server/socket_reader.rb +5 -1
- data/lib/rubocop/server.rb +1 -1
- data/lib/rubocop/target_finder.rb +1 -1
- data/lib/rubocop/target_ruby.rb +5 -5
- data/lib/rubocop/version.rb +17 -7
- data/lib/rubocop.rb +52 -8
- metadata +80 -32
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.54.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bozhidar Batsov
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2023-07-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: json
|
@@ -26,6 +26,20 @@ dependencies:
|
|
26
26
|
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: '2.3'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: language_server-protocol
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 3.17.0
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 3.17.0
|
29
43
|
- !ruby/object:Gem::Dependency
|
30
44
|
name: parallel
|
31
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -46,14 +60,14 @@ dependencies:
|
|
46
60
|
requirements:
|
47
61
|
- - ">="
|
48
62
|
- !ruby/object:Gem::Version
|
49
|
-
version: 3.
|
63
|
+
version: 3.2.2.3
|
50
64
|
type: :runtime
|
51
65
|
prerelease: false
|
52
66
|
version_requirements: !ruby/object:Gem::Requirement
|
53
67
|
requirements:
|
54
68
|
- - ">="
|
55
69
|
- !ruby/object:Gem::Version
|
56
|
-
version: 3.
|
70
|
+
version: 3.2.2.3
|
57
71
|
- !ruby/object:Gem::Dependency
|
58
72
|
name: rainbow
|
59
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,7 +134,7 @@ dependencies:
|
|
120
134
|
requirements:
|
121
135
|
- - ">="
|
122
136
|
- !ruby/object:Gem::Version
|
123
|
-
version: 1.
|
137
|
+
version: 1.28.0
|
124
138
|
- - "<"
|
125
139
|
- !ruby/object:Gem::Version
|
126
140
|
version: '2.0'
|
@@ -130,7 +144,7 @@ dependencies:
|
|
130
144
|
requirements:
|
131
145
|
- - ">="
|
132
146
|
- !ruby/object:Gem::Version
|
133
|
-
version: 1.
|
147
|
+
version: 1.28.0
|
134
148
|
- - "<"
|
135
149
|
- !ruby/object:Gem::Version
|
136
150
|
version: '2.0'
|
@@ -154,7 +168,7 @@ dependencies:
|
|
154
168
|
requirements:
|
155
169
|
- - ">="
|
156
170
|
- !ruby/object:Gem::Version
|
157
|
-
version:
|
171
|
+
version: 2.4.0
|
158
172
|
- - "<"
|
159
173
|
- !ruby/object:Gem::Version
|
160
174
|
version: '3.0'
|
@@ -164,27 +178,7 @@ dependencies:
|
|
164
178
|
requirements:
|
165
179
|
- - ">="
|
166
180
|
- !ruby/object:Gem::Version
|
167
|
-
version:
|
168
|
-
- - "<"
|
169
|
-
- !ruby/object:Gem::Version
|
170
|
-
version: '3.0'
|
171
|
-
- !ruby/object:Gem::Dependency
|
172
|
-
name: bundler
|
173
|
-
requirement: !ruby/object:Gem::Requirement
|
174
|
-
requirements:
|
175
|
-
- - ">="
|
176
|
-
- !ruby/object:Gem::Version
|
177
|
-
version: 1.15.0
|
178
|
-
- - "<"
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '3.0'
|
181
|
-
type: :development
|
182
|
-
prerelease: false
|
183
|
-
version_requirements: !ruby/object:Gem::Requirement
|
184
|
-
requirements:
|
185
|
-
- - ">="
|
186
|
-
- !ruby/object:Gem::Version
|
187
|
-
version: 1.15.0
|
181
|
+
version: 2.4.0
|
188
182
|
- - "<"
|
189
183
|
- !ruby/object:Gem::Version
|
190
184
|
version: '3.0'
|
@@ -207,15 +201,18 @@ files:
|
|
207
201
|
- config/obsoletion.yml
|
208
202
|
- exe/rubocop
|
209
203
|
- lib/rubocop.rb
|
204
|
+
- lib/rubocop/arguments_env.rb
|
205
|
+
- lib/rubocop/arguments_file.rb
|
210
206
|
- lib/rubocop/ast_aliases.rb
|
211
207
|
- lib/rubocop/cache_config.rb
|
212
208
|
- lib/rubocop/cached_data.rb
|
213
209
|
- lib/rubocop/cli.rb
|
214
210
|
- lib/rubocop/cli/command.rb
|
215
|
-
- lib/rubocop/cli/command/
|
211
|
+
- lib/rubocop/cli/command/auto_generate_config.rb
|
216
212
|
- lib/rubocop/cli/command/base.rb
|
217
213
|
- lib/rubocop/cli/command/execute_runner.rb
|
218
214
|
- lib/rubocop/cli/command/init_dotfile.rb
|
215
|
+
- lib/rubocop/cli/command/lsp.rb
|
219
216
|
- lib/rubocop/cli/command/show_cops.rb
|
220
217
|
- lib/rubocop/cli/command/show_docs_url.rb
|
221
218
|
- lib/rubocop/cli/command/suggest_extensions.rb
|
@@ -273,6 +270,7 @@ files:
|
|
273
270
|
- lib/rubocop/cop/force.rb
|
274
271
|
- lib/rubocop/cop/gemspec/dependency_version.rb
|
275
272
|
- lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb
|
273
|
+
- lib/rubocop/cop/gemspec/development_dependencies.rb
|
276
274
|
- lib/rubocop/cop/gemspec/duplicated_assignment.rb
|
277
275
|
- lib/rubocop/cop/gemspec/ordered_dependencies.rb
|
278
276
|
- lib/rubocop/cop/gemspec/require_mfa.rb
|
@@ -284,22 +282,29 @@ files:
|
|
284
282
|
- lib/rubocop/cop/ignored_node.rb
|
285
283
|
- lib/rubocop/cop/internal_affairs.rb
|
286
284
|
- lib/rubocop/cop/internal_affairs/cop_description.rb
|
285
|
+
- lib/rubocop/cop/internal_affairs/create_empty_file.rb
|
287
286
|
- lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb
|
288
287
|
- lib/rubocop/cop/internal_affairs/example_description.rb
|
288
|
+
- lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb
|
289
289
|
- lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb
|
290
|
+
- lib/rubocop/cop/internal_affairs/lambda_or_proc.rb
|
291
|
+
- lib/rubocop/cop/internal_affairs/location_expression.rb
|
290
292
|
- lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb
|
291
293
|
- lib/rubocop/cop/internal_affairs/method_name_end_with.rb
|
292
294
|
- lib/rubocop/cop/internal_affairs/method_name_equal.rb
|
293
295
|
- lib/rubocop/cop/internal_affairs/node_destructuring.rb
|
294
296
|
- lib/rubocop/cop/internal_affairs/node_matcher_directive.rb
|
295
297
|
- lib/rubocop/cop/internal_affairs/node_type_predicate.rb
|
298
|
+
- lib/rubocop/cop/internal_affairs/numblock_handler.rb
|
296
299
|
- lib/rubocop/cop/internal_affairs/offense_location_keyword.rb
|
300
|
+
- lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb
|
297
301
|
- lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb
|
298
302
|
- lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb
|
299
303
|
- lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb
|
300
304
|
- lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
|
301
305
|
- lib/rubocop/cop/internal_affairs/redundant_message_argument.rb
|
302
306
|
- lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
|
307
|
+
- lib/rubocop/cop/internal_affairs/redundant_source_range.rb
|
303
308
|
- lib/rubocop/cop/internal_affairs/single_line_comparison.rb
|
304
309
|
- lib/rubocop/cop/internal_affairs/style_detected_api_use.rb
|
305
310
|
- lib/rubocop/cop/internal_affairs/undefined_config.rb
|
@@ -429,6 +434,8 @@ files:
|
|
429
434
|
- lib/rubocop/cop/lint/duplicate_case_condition.rb
|
430
435
|
- lib/rubocop/cop/lint/duplicate_elsif_condition.rb
|
431
436
|
- lib/rubocop/cop/lint/duplicate_hash_key.rb
|
437
|
+
- lib/rubocop/cop/lint/duplicate_magic_comment.rb
|
438
|
+
- lib/rubocop/cop/lint/duplicate_match_pattern.rb
|
432
439
|
- lib/rubocop/cop/lint/duplicate_methods.rb
|
433
440
|
- lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb
|
434
441
|
- lib/rubocop/cop/lint/duplicate_require.rb
|
@@ -464,6 +471,7 @@ files:
|
|
464
471
|
- lib/rubocop/cop/lint/loop.rb
|
465
472
|
- lib/rubocop/cop/lint/missing_cop_enable_directive.rb
|
466
473
|
- lib/rubocop/cop/lint/missing_super.rb
|
474
|
+
- lib/rubocop/cop/lint/mixed_case_range.rb
|
467
475
|
- lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
|
468
476
|
- lib/rubocop/cop/lint/multiple_comparison.rb
|
469
477
|
- lib/rubocop/cop/lint/nested_method_definition.rb
|
@@ -486,6 +494,7 @@ files:
|
|
486
494
|
- lib/rubocop/cop/lint/redundant_cop_disable_directive.rb
|
487
495
|
- lib/rubocop/cop/lint/redundant_cop_enable_directive.rb
|
488
496
|
- lib/rubocop/cop/lint/redundant_dir_glob_sort.rb
|
497
|
+
- lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb
|
489
498
|
- lib/rubocop/cop/lint/redundant_require_statement.rb
|
490
499
|
- lib/rubocop/cop/lint/redundant_safe_navigation.rb
|
491
500
|
- lib/rubocop/cop/lint/redundant_splat_expansion.rb
|
@@ -532,6 +541,7 @@ files:
|
|
532
541
|
- lib/rubocop/cop/lint/useless_assignment.rb
|
533
542
|
- lib/rubocop/cop/lint/useless_else_without_rescue.rb
|
534
543
|
- lib/rubocop/cop/lint/useless_method_definition.rb
|
544
|
+
- lib/rubocop/cop/lint/useless_rescue.rb
|
535
545
|
- lib/rubocop/cop/lint/useless_ruby2_keywords.rb
|
536
546
|
- lib/rubocop/cop/lint/useless_setter_call.rb
|
537
547
|
- lib/rubocop/cop/lint/useless_times.rb
|
@@ -541,6 +551,7 @@ files:
|
|
541
551
|
- lib/rubocop/cop/metrics/block_length.rb
|
542
552
|
- lib/rubocop/cop/metrics/block_nesting.rb
|
543
553
|
- lib/rubocop/cop/metrics/class_length.rb
|
554
|
+
- lib/rubocop/cop/metrics/collection_literal_length.rb
|
544
555
|
- lib/rubocop/cop/metrics/cyclomatic_complexity.rb
|
545
556
|
- lib/rubocop/cop/metrics/method_length.rb
|
546
557
|
- lib/rubocop/cop/metrics/module_length.rb
|
@@ -556,6 +567,7 @@ files:
|
|
556
567
|
- lib/rubocop/cop/mixin/allowed_identifiers.rb
|
557
568
|
- lib/rubocop/cop/mixin/allowed_methods.rb
|
558
569
|
- lib/rubocop/cop/mixin/allowed_pattern.rb
|
570
|
+
- lib/rubocop/cop/mixin/allowed_receivers.rb
|
559
571
|
- lib/rubocop/cop/mixin/annotation_comment.rb
|
560
572
|
- lib/rubocop/cop/mixin/array_min_size.rb
|
561
573
|
- lib/rubocop/cop/mixin/array_syntax.rb
|
@@ -591,6 +603,7 @@ files:
|
|
591
603
|
- lib/rubocop/cop/mixin/method_complexity.rb
|
592
604
|
- lib/rubocop/cop/mixin/method_preference.rb
|
593
605
|
- lib/rubocop/cop/mixin/min_body_length.rb
|
606
|
+
- lib/rubocop/cop/mixin/min_branches_count.rb
|
594
607
|
- lib/rubocop/cop/mixin/multiline_element_indentation.rb
|
595
608
|
- lib/rubocop/cop/mixin/multiline_element_line_breaks.rb
|
596
609
|
- lib/rubocop/cop/mixin/multiline_expression_indentation.rb
|
@@ -656,6 +669,7 @@ files:
|
|
656
669
|
- lib/rubocop/cop/style/and_or.rb
|
657
670
|
- lib/rubocop/cop/style/arguments_forwarding.rb
|
658
671
|
- lib/rubocop/cop/style/array_coercion.rb
|
672
|
+
- lib/rubocop/cop/style/array_intersect.rb
|
659
673
|
- lib/rubocop/cop/style/array_join.rb
|
660
674
|
- lib/rubocop/cop/style/ascii_comments.rb
|
661
675
|
- lib/rubocop/cop/style/attr.rb
|
@@ -683,12 +697,16 @@ files:
|
|
683
697
|
- lib/rubocop/cop/style/command_literal.rb
|
684
698
|
- lib/rubocop/cop/style/comment_annotation.rb
|
685
699
|
- lib/rubocop/cop/style/commented_keyword.rb
|
700
|
+
- lib/rubocop/cop/style/comparable_clamp.rb
|
701
|
+
- lib/rubocop/cop/style/concat_array_literals.rb
|
686
702
|
- lib/rubocop/cop/style/conditional_assignment.rb
|
687
703
|
- lib/rubocop/cop/style/constant_visibility.rb
|
688
704
|
- lib/rubocop/cop/style/copyright.rb
|
705
|
+
- lib/rubocop/cop/style/data_inheritance.rb
|
689
706
|
- lib/rubocop/cop/style/date_time.rb
|
690
707
|
- lib/rubocop/cop/style/def_with_parentheses.rb
|
691
708
|
- lib/rubocop/cop/style/dir.rb
|
709
|
+
- lib/rubocop/cop/style/dir_empty.rb
|
692
710
|
- lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb
|
693
711
|
- lib/rubocop/cop/style/document_dynamic_eval_definition.rb
|
694
712
|
- lib/rubocop/cop/style/documentation.rb
|
@@ -710,10 +728,12 @@ files:
|
|
710
728
|
- lib/rubocop/cop/style/env_home.rb
|
711
729
|
- lib/rubocop/cop/style/eval_with_location.rb
|
712
730
|
- lib/rubocop/cop/style/even_odd.rb
|
731
|
+
- lib/rubocop/cop/style/exact_regexp_match.rb
|
713
732
|
- lib/rubocop/cop/style/expand_path_arguments.rb
|
714
733
|
- lib/rubocop/cop/style/explicit_block_argument.rb
|
715
734
|
- lib/rubocop/cop/style/exponential_notation.rb
|
716
735
|
- lib/rubocop/cop/style/fetch_env_var.rb
|
736
|
+
- lib/rubocop/cop/style/file_empty.rb
|
717
737
|
- lib/rubocop/cop/style/file_read.rb
|
718
738
|
- lib/rubocop/cop/style/file_write.rb
|
719
739
|
- lib/rubocop/cop/style/float_division.rb
|
@@ -743,13 +763,16 @@ files:
|
|
743
763
|
- lib/rubocop/cop/style/infinite_loop.rb
|
744
764
|
- lib/rubocop/cop/style/inline_comment.rb
|
745
765
|
- lib/rubocop/cop/style/inverse_methods.rb
|
766
|
+
- lib/rubocop/cop/style/invertible_unless_condition.rb
|
746
767
|
- lib/rubocop/cop/style/ip_addresses.rb
|
747
768
|
- lib/rubocop/cop/style/keyword_parameters_order.rb
|
748
769
|
- lib/rubocop/cop/style/lambda.rb
|
749
770
|
- lib/rubocop/cop/style/lambda_call.rb
|
750
771
|
- lib/rubocop/cop/style/line_end_concatenation.rb
|
772
|
+
- lib/rubocop/cop/style/magic_comment_format.rb
|
751
773
|
- lib/rubocop/cop/style/map_compact_with_conditional_block.rb
|
752
774
|
- lib/rubocop/cop/style/map_to_hash.rb
|
775
|
+
- lib/rubocop/cop/style/map_to_set.rb
|
753
776
|
- lib/rubocop/cop/style/method_call_with_args_parentheses.rb
|
754
777
|
- lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb
|
755
778
|
- lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb
|
@@ -757,6 +780,7 @@ files:
|
|
757
780
|
- lib/rubocop/cop/style/method_called_on_do_end_block.rb
|
758
781
|
- lib/rubocop/cop/style/method_def_parentheses.rb
|
759
782
|
- lib/rubocop/cop/style/min_max.rb
|
783
|
+
- lib/rubocop/cop/style/min_max_comparison.rb
|
760
784
|
- lib/rubocop/cop/style/missing_else.rb
|
761
785
|
- lib/rubocop/cop/style/missing_respond_to_missing.rb
|
762
786
|
- lib/rubocop/cop/style/mixin_grouping.rb
|
@@ -793,6 +817,7 @@ files:
|
|
793
817
|
- lib/rubocop/cop/style/object_then.rb
|
794
818
|
- lib/rubocop/cop/style/one_line_conditional.rb
|
795
819
|
- lib/rubocop/cop/style/open_struct_use.rb
|
820
|
+
- lib/rubocop/cop/style/operator_method_call.rb
|
796
821
|
- lib/rubocop/cop/style/option_hash.rb
|
797
822
|
- lib/rubocop/cop/style/optional_arguments.rb
|
798
823
|
- lib/rubocop/cop/style/optional_boolean_parameter.rb
|
@@ -808,20 +833,30 @@ files:
|
|
808
833
|
- lib/rubocop/cop/style/raise_args.rb
|
809
834
|
- lib/rubocop/cop/style/random_with_offset.rb
|
810
835
|
- lib/rubocop/cop/style/redundant_argument.rb
|
836
|
+
- lib/rubocop/cop/style/redundant_array_constructor.rb
|
811
837
|
- lib/rubocop/cop/style/redundant_assignment.rb
|
812
838
|
- lib/rubocop/cop/style/redundant_begin.rb
|
813
839
|
- lib/rubocop/cop/style/redundant_capital_w.rb
|
814
840
|
- lib/rubocop/cop/style/redundant_condition.rb
|
815
841
|
- lib/rubocop/cop/style/redundant_conditional.rb
|
842
|
+
- lib/rubocop/cop/style/redundant_constant_base.rb
|
843
|
+
- lib/rubocop/cop/style/redundant_current_directory_in_path.rb
|
844
|
+
- lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb
|
845
|
+
- lib/rubocop/cop/style/redundant_each.rb
|
816
846
|
- lib/rubocop/cop/style/redundant_exception.rb
|
817
847
|
- lib/rubocop/cop/style/redundant_fetch_block.rb
|
818
848
|
- lib/rubocop/cop/style/redundant_file_extension_in_require.rb
|
849
|
+
- lib/rubocop/cop/style/redundant_filter_chain.rb
|
819
850
|
- lib/rubocop/cop/style/redundant_freeze.rb
|
851
|
+
- lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb
|
820
852
|
- lib/rubocop/cop/style/redundant_initialize.rb
|
821
853
|
- lib/rubocop/cop/style/redundant_interpolation.rb
|
854
|
+
- lib/rubocop/cop/style/redundant_line_continuation.rb
|
822
855
|
- lib/rubocop/cop/style/redundant_parentheses.rb
|
823
856
|
- lib/rubocop/cop/style/redundant_percent_q.rb
|
857
|
+
- lib/rubocop/cop/style/redundant_regexp_argument.rb
|
824
858
|
- lib/rubocop/cop/style/redundant_regexp_character_class.rb
|
859
|
+
- lib/rubocop/cop/style/redundant_regexp_constructor.rb
|
825
860
|
- lib/rubocop/cop/style/redundant_regexp_escape.rb
|
826
861
|
- lib/rubocop/cop/style/redundant_return.rb
|
827
862
|
- lib/rubocop/cop/style/redundant_self.rb
|
@@ -829,10 +864,13 @@ files:
|
|
829
864
|
- lib/rubocop/cop/style/redundant_self_assignment_branch.rb
|
830
865
|
- lib/rubocop/cop/style/redundant_sort.rb
|
831
866
|
- lib/rubocop/cop/style/redundant_sort_by.rb
|
867
|
+
- lib/rubocop/cop/style/redundant_string_escape.rb
|
832
868
|
- lib/rubocop/cop/style/regexp_literal.rb
|
869
|
+
- lib/rubocop/cop/style/require_order.rb
|
833
870
|
- lib/rubocop/cop/style/rescue_modifier.rb
|
834
871
|
- lib/rubocop/cop/style/rescue_standard_error.rb
|
835
872
|
- lib/rubocop/cop/style/return_nil.rb
|
873
|
+
- lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb
|
836
874
|
- lib/rubocop/cop/style/safe_navigation.rb
|
837
875
|
- lib/rubocop/cop/style/sample.rb
|
838
876
|
- lib/rubocop/cop/style/select_by_regexp.rb
|
@@ -881,11 +919,14 @@ files:
|
|
881
919
|
- lib/rubocop/cop/style/while_until_do.rb
|
882
920
|
- lib/rubocop/cop/style/while_until_modifier.rb
|
883
921
|
- lib/rubocop/cop/style/word_array.rb
|
922
|
+
- lib/rubocop/cop/style/yaml_file_read.rb
|
884
923
|
- lib/rubocop/cop/style/yoda_condition.rb
|
924
|
+
- lib/rubocop/cop/style/yoda_expression.rb
|
885
925
|
- lib/rubocop/cop/style/zero_length_predicate.rb
|
886
926
|
- lib/rubocop/cop/team.rb
|
887
927
|
- lib/rubocop/cop/util.rb
|
888
928
|
- lib/rubocop/cop/utils/format_string.rb
|
929
|
+
- lib/rubocop/cop/utils/regexp_ranges.rb
|
889
930
|
- lib/rubocop/cop/variable_force.rb
|
890
931
|
- lib/rubocop/cop/variable_force/assignment.rb
|
891
932
|
- lib/rubocop/cop/variable_force/branch.rb
|
@@ -898,12 +939,14 @@ files:
|
|
898
939
|
- lib/rubocop/core_ext/string.rb
|
899
940
|
- lib/rubocop/directive_comment.rb
|
900
941
|
- lib/rubocop/error.rb
|
942
|
+
- lib/rubocop/ext/comment.rb
|
901
943
|
- lib/rubocop/ext/processed_source.rb
|
902
944
|
- lib/rubocop/ext/range.rb
|
903
945
|
- lib/rubocop/ext/regexp_node.rb
|
904
946
|
- lib/rubocop/ext/regexp_parser.rb
|
905
947
|
- lib/rubocop/feature_loader.rb
|
906
948
|
- lib/rubocop/file_finder.rb
|
949
|
+
- lib/rubocop/file_patterns.rb
|
907
950
|
- lib/rubocop/formatter.rb
|
908
951
|
- lib/rubocop/formatter/auto_gen_config_formatter.rb
|
909
952
|
- lib/rubocop/formatter/base_formatter.rb
|
@@ -928,6 +971,11 @@ files:
|
|
928
971
|
- lib/rubocop/formatter/text_util.rb
|
929
972
|
- lib/rubocop/formatter/worst_offenders_formatter.rb
|
930
973
|
- lib/rubocop/lockfile.rb
|
974
|
+
- lib/rubocop/lsp/logger.rb
|
975
|
+
- lib/rubocop/lsp/routes.rb
|
976
|
+
- lib/rubocop/lsp/runtime.rb
|
977
|
+
- lib/rubocop/lsp/server.rb
|
978
|
+
- lib/rubocop/lsp/severity.rb
|
931
979
|
- lib/rubocop/magic_comment.rb
|
932
980
|
- lib/rubocop/name_similarity.rb
|
933
981
|
- lib/rubocop/options.rb
|
@@ -975,7 +1023,7 @@ metadata:
|
|
975
1023
|
homepage_uri: https://rubocop.org/
|
976
1024
|
changelog_uri: https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md
|
977
1025
|
source_code_uri: https://github.com/rubocop/rubocop/
|
978
|
-
documentation_uri: https://docs.rubocop.org/rubocop/1.
|
1026
|
+
documentation_uri: https://docs.rubocop.org/rubocop/1.54/
|
979
1027
|
bug_tracker_uri: https://github.com/rubocop/rubocop/issues
|
980
1028
|
rubygems_mfa_required: 'true'
|
981
1029
|
post_install_message:
|
@@ -986,14 +1034,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
986
1034
|
requirements:
|
987
1035
|
- - ">="
|
988
1036
|
- !ruby/object:Gem::Version
|
989
|
-
version: 2.
|
1037
|
+
version: 2.7.0
|
990
1038
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
991
1039
|
requirements:
|
992
1040
|
- - ">="
|
993
1041
|
- !ruby/object:Gem::Version
|
994
1042
|
version: '0'
|
995
1043
|
requirements: []
|
996
|
-
rubygems_version: 3.
|
1044
|
+
rubygems_version: 3.4.6
|
997
1045
|
signing_key:
|
998
1046
|
specification_version: 4
|
999
1047
|
summary: Automatic Ruby code style checking tool.
|