rubocop 1.29.1 → 1.48.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 +6 -4
- data/config/default.yml +359 -52
- data/config/obsoletion.yml +25 -1
- data/exe/rubocop +15 -7
- data/lib/rubocop/arguments_env.rb +17 -0
- data/lib/rubocop/arguments_file.rb +17 -0
- data/lib/rubocop/cache_config.rb +29 -0
- data/lib/rubocop/cli/command/{auto_genenerate_config.rb → auto_generate_config.rb} +27 -5
- data/lib/rubocop/cli/command/execute_runner.rb +8 -8
- data/lib/rubocop/cli/command/init_dotfile.rb +1 -1
- data/lib/rubocop/cli/command/show_cops.rb +1 -1
- data/lib/rubocop/cli/command/suggest_extensions.rb +61 -16
- data/lib/rubocop/cli.rb +57 -9
- data/lib/rubocop/comment_config.rb +60 -1
- data/lib/rubocop/config.rb +45 -17
- data/lib/rubocop/config_finder.rb +68 -0
- data/lib/rubocop/config_loader.rb +41 -61
- data/lib/rubocop/config_loader_resolver.rb +11 -12
- data/lib/rubocop/config_obsoletion/changed_parameter.rb +5 -0
- data/lib/rubocop/config_obsoletion/parameter_rule.rb +4 -0
- data/lib/rubocop/config_obsoletion.rb +7 -2
- data/lib/rubocop/config_validator.rb +22 -5
- data/lib/rubocop/cop/autocorrect_logic.rb +5 -3
- data/lib/rubocop/cop/badge.rb +9 -4
- data/lib/rubocop/cop/base.rb +115 -83
- data/lib/rubocop/cop/bundler/duplicated_gem.rb +1 -1
- data/lib/rubocop/cop/bundler/gem_comment.rb +1 -1
- data/lib/rubocop/cop/bundler/gem_filename.rb +5 -5
- data/lib/rubocop/cop/bundler/ordered_gems.rb +2 -2
- data/lib/rubocop/cop/commissioner.rb +19 -6
- data/lib/rubocop/cop/cop.rb +52 -32
- data/lib/rubocop/cop/corrector.rb +33 -13
- data/lib/rubocop/cop/correctors/alignment_corrector.rb +3 -3
- data/lib/rubocop/cop/correctors/condition_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +4 -4
- data/lib/rubocop/cop/correctors/empty_line_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +7 -5
- data/lib/rubocop/cop/correctors/if_then_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/line_break_corrector.rb +8 -2
- data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +26 -10
- data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +3 -8
- data/lib/rubocop/cop/correctors/parentheses_corrector.rb +59 -1
- data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/punctuation_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/space_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/string_literal_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +2 -2
- data/lib/rubocop/cop/gemspec/dependency_version.rb +16 -18
- data/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +92 -0
- data/lib/rubocop/cop/gemspec/development_dependencies.rb +107 -0
- data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +1 -1
- data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +1 -1
- data/lib/rubocop/cop/gemspec/require_mfa.rb +21 -21
- data/lib/rubocop/cop/generator/require_file_injector.rb +2 -2
- data/lib/rubocop/cop/generator.rb +6 -3
- data/lib/rubocop/cop/internal_affairs/cop_description.rb +98 -0
- data/lib/rubocop/cop/internal_affairs/create_empty_file.rb +37 -0
- data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
- 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/location_line_equality_comparison.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +1 -5
- 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_described_class_as_subject.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +12 -4
- 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 +39 -0
- data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +62 -0
- data/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +60 -0
- data/lib/rubocop/cop/internal_affairs.rb +10 -0
- data/lib/rubocop/cop/layout/argument_alignment.rb +22 -1
- data/lib/rubocop/cop/layout/array_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/assignment_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/begin_end_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/block_alignment.rb +17 -13
- data/lib/rubocop/cop/layout/block_end_newline.rb +44 -8
- data/lib/rubocop/cop/layout/case_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/class_structure.rb +36 -27
- data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +3 -7
- data/lib/rubocop/cop/layout/comment_indentation.rb +4 -2
- data/lib/rubocop/cop/layout/condition_position.rb +1 -1
- data/lib/rubocop/cop/layout/def_end_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/dot_position.rb +1 -1
- data/lib/rubocop/cop/layout/else_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/empty_comment.rb +4 -4
- data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +1 -1
- data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +1 -1
- data/lib/rubocop/cop/layout/empty_line_between_defs.rb +2 -2
- data/lib/rubocop/cop/layout/empty_lines.rb +3 -1
- data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +5 -2
- data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +1 -1
- data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +25 -4
- data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +1 -1
- data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +7 -5
- data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +10 -10
- 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 +1 -1
- data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +10 -10
- data/lib/rubocop/cop/layout/end_alignment.rb +5 -1
- data/lib/rubocop/cop/layout/end_of_line.rb +5 -5
- data/lib/rubocop/cop/layout/extra_spacing.rb +10 -6
- data/lib/rubocop/cop/layout/first_argument_indentation.rb +37 -31
- data/lib/rubocop/cop/layout/first_array_element_indentation.rb +21 -14
- data/lib/rubocop/cop/layout/first_array_element_line_break.rb +39 -3
- data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +52 -13
- data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +50 -3
- data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +62 -3
- data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +53 -3
- data/lib/rubocop/cop/layout/first_parameter_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/hash_alignment.rb +2 -0
- data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +9 -3
- data/lib/rubocop/cop/layout/heredoc_indentation.rb +9 -12
- data/lib/rubocop/cop/layout/indentation_consistency.rb +1 -1
- data/lib/rubocop/cop/layout/indentation_style.rb +8 -3
- data/lib/rubocop/cop/layout/indentation_width.rb +14 -7
- data/lib/rubocop/cop/layout/initial_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/leading_comment_space.rb +2 -2
- data/lib/rubocop/cop/layout/leading_empty_lines.rb +1 -1
- data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +136 -0
- data/lib/rubocop/cop/layout/line_continuation_spacing.rb +140 -0
- data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/line_length.rb +9 -2
- data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +1 -1
- data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +52 -3
- data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +2 -2
- data/lib/rubocop/cop/layout/multiline_block_layout.rb +5 -3
- data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +1 -1
- data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +50 -3
- data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +58 -4
- data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +1 -1
- data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +3 -3
- data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +1 -1
- data/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +101 -0
- data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +3 -3
- data/lib/rubocop/cop/layout/redundant_line_break.rb +4 -4
- data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +3 -3
- data/lib/rubocop/cop/layout/single_line_block_chain.rb +1 -1
- data/lib/rubocop/cop/layout/space_after_not.rb +1 -1
- data/lib/rubocop/cop/layout/space_around_block_parameters.rb +2 -2
- data/lib/rubocop/cop/layout/space_around_keyword.rb +3 -3
- data/lib/rubocop/cop/layout/space_around_operators.rb +2 -2
- data/lib/rubocop/cop/layout/space_before_block_braces.rb +5 -3
- data/lib/rubocop/cop/layout/space_before_comment.rb +1 -1
- data/lib/rubocop/cop/layout/space_before_first_arg.rb +1 -1
- data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +3 -3
- data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +32 -30
- data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +3 -0
- data/lib/rubocop/cop/layout/space_inside_block_braces.rb +33 -15
- data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +30 -3
- data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +34 -0
- data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +10 -6
- data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +6 -5
- data/lib/rubocop/cop/layout/trailing_empty_lines.rb +9 -9
- data/lib/rubocop/cop/layout/trailing_whitespace.rb +14 -7
- data/lib/rubocop/cop/legacy/corrections_proxy.rb +1 -1
- data/lib/rubocop/cop/legacy/corrector.rb +1 -1
- data/lib/rubocop/cop/lint/ambiguous_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/ambiguous_block_association.rb +28 -8
- data/lib/rubocop/cop/lint/ambiguous_operator.rb +5 -1
- data/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +1 -1
- data/lib/rubocop/cop/lint/ambiguous_range.rb +3 -3
- data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +1 -1
- data/lib/rubocop/cop/lint/assignment_in_condition.rb +12 -2
- data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +1 -1
- data/lib/rubocop/cop/lint/boolean_symbol.rb +1 -1
- data/lib/rubocop/cop/lint/circular_argument_reference.rb +1 -1
- data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
- data/lib/rubocop/cop/lint/constant_resolution.rb +5 -1
- data/lib/rubocop/cop/lint/debugger.rb +28 -32
- data/lib/rubocop/cop/lint/deprecated_class_methods.rb +67 -111
- data/lib/rubocop/cop/lint/deprecated_constants.rb +9 -2
- data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +1 -1
- data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_branch.rb +1 -3
- data/lib/rubocop/cop/lint/duplicate_case_condition.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_hash_key.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
- data/lib/rubocop/cop/lint/duplicate_methods.rb +49 -19
- data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +27 -10
- data/lib/rubocop/cop/lint/duplicate_require.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +1 -1
- data/lib/rubocop/cop/lint/each_with_object_argument.rb +1 -1
- data/lib/rubocop/cop/lint/else_layout.rb +6 -10
- data/lib/rubocop/cop/lint/empty_block.rb +4 -8
- data/lib/rubocop/cop/lint/empty_class.rb +4 -2
- data/lib/rubocop/cop/lint/empty_conditional_body.rb +111 -3
- data/lib/rubocop/cop/lint/empty_ensure.rb +1 -1
- data/lib/rubocop/cop/lint/empty_expression.rb +1 -1
- data/lib/rubocop/cop/lint/empty_file.rb +1 -1
- data/lib/rubocop/cop/lint/empty_in_pattern.rb +1 -1
- data/lib/rubocop/cop/lint/empty_interpolation.rb +2 -2
- data/lib/rubocop/cop/lint/empty_when.rb +1 -1
- data/lib/rubocop/cop/lint/ensure_return.rb +1 -1
- data/lib/rubocop/cop/lint/erb_new_arguments.rb +9 -9
- data/lib/rubocop/cop/lint/flip_flop.rb +1 -1
- data/lib/rubocop/cop/lint/float_comparison.rb +1 -1
- data/lib/rubocop/cop/lint/float_out_of_range.rb +1 -1
- 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/implicit_string_concatenation.rb +2 -2
- data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +1 -1
- data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +2 -2
- data/lib/rubocop/cop/lint/inherit_exception.rb +1 -1
- data/lib/rubocop/cop/lint/interpolation_check.rb +6 -5
- data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +2 -2
- data/lib/rubocop/cop/lint/literal_as_condition.rb +6 -1
- data/lib/rubocop/cop/lint/literal_in_interpolation.rb +49 -3
- data/lib/rubocop/cop/lint/loop.rb +1 -1
- data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +19 -4
- data/lib/rubocop/cop/lint/missing_super.rb +32 -3
- data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +1 -0
- data/lib/rubocop/cop/lint/nested_method_definition.rb +52 -8
- data/lib/rubocop/cop/lint/nested_percent_literal.rb +1 -1
- data/lib/rubocop/cop/lint/next_without_accumulator.rb +25 -6
- data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +162 -0
- data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +12 -0
- data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +1 -1
- data/lib/rubocop/cop/lint/number_conversion.rb +32 -10
- data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +4 -3
- data/lib/rubocop/cop/lint/ordered_magic_comments.rb +4 -5
- data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +16 -1
- data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +6 -1
- data/lib/rubocop/cop/lint/percent_string_array.rb +2 -2
- data/lib/rubocop/cop/lint/percent_symbol_array.rb +2 -2
- data/lib/rubocop/cop/lint/raise_exception.rb +1 -1
- data/lib/rubocop/cop/lint/rand_one.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +54 -14
- data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +8 -8
- data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +7 -0
- data/lib/rubocop/cop/lint/redundant_require_statement.rb +48 -7
- data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +16 -3
- data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +2 -2
- data/lib/rubocop/cop/lint/redundant_string_coercion.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_with_index.rb +15 -12
- data/lib/rubocop/cop/lint/redundant_with_object.rb +14 -13
- data/lib/rubocop/cop/lint/refinement_import_methods.rb +3 -2
- data/lib/rubocop/cop/lint/regexp_as_condition.rb +9 -3
- data/lib/rubocop/cop/lint/require_parentheses.rb +4 -2
- data/lib/rubocop/cop/lint/require_range_parentheses.rb +57 -0
- data/lib/rubocop/cop/lint/rescue_exception.rb +1 -1
- data/lib/rubocop/cop/lint/rescue_type.rb +3 -3
- data/lib/rubocop/cop/lint/return_in_void_context.rb +1 -1
- data/lib/rubocop/cop/lint/safe_navigation_chain.rb +44 -8
- data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +2 -2
- data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +1 -1
- data/lib/rubocop/cop/lint/script_permission.rb +2 -2
- data/lib/rubocop/cop/lint/self_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +5 -4
- data/lib/rubocop/cop/lint/shadowed_argument.rb +1 -1
- data/lib/rubocop/cop/lint/shadowed_exception.rb +17 -12
- data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +29 -4
- data/lib/rubocop/cop/lint/struct_new_override.rb +3 -3
- 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 +1 -1
- data/lib/rubocop/cop/lint/to_enum_arguments.rb +7 -3
- data/lib/rubocop/cop/lint/to_json.rb +1 -1
- data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +1 -1
- data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +2 -2
- data/lib/rubocop/cop/lint/triple_quotes.rb +1 -1
- data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +1 -1
- data/lib/rubocop/cop/lint/unexpected_block_arity.rb +1 -1
- data/lib/rubocop/cop/lint/unified_integer.rb +3 -1
- data/lib/rubocop/cop/lint/unreachable_code.rb +1 -1
- data/lib/rubocop/cop/lint/unreachable_loop.rb +10 -4
- data/lib/rubocop/cop/lint/unused_block_argument.rb +1 -1
- data/lib/rubocop/cop/lint/unused_method_argument.rb +7 -2
- data/lib/rubocop/cop/lint/uri_escape_unescape.rb +1 -1
- data/lib/rubocop/cop/lint/uri_regexp.rb +1 -1
- data/lib/rubocop/cop/lint/useless_access_modifier.rb +18 -13
- data/lib/rubocop/cop/lint/useless_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +44 -0
- data/lib/rubocop/cop/lint/useless_method_definition.rb +4 -4
- data/lib/rubocop/cop/lint/useless_rescue.rb +86 -0
- data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +16 -6
- data/lib/rubocop/cop/lint/useless_setter_call.rb +2 -2
- data/lib/rubocop/cop/lint/useless_times.rb +2 -2
- data/lib/rubocop/cop/lint/void.rb +27 -16
- data/lib/rubocop/cop/metrics/abc_size.rb +5 -3
- data/lib/rubocop/cop/metrics/block_length.rb +17 -12
- data/lib/rubocop/cop/metrics/block_nesting.rb +2 -2
- data/lib/rubocop/cop/metrics/class_length.rb +10 -5
- data/lib/rubocop/cop/metrics/collection_literal_length.rb +76 -0
- data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +2 -2
- data/lib/rubocop/cop/metrics/method_length.rb +18 -12
- data/lib/rubocop/cop/metrics/module_length.rb +10 -5
- data/lib/rubocop/cop/metrics/parameter_lists.rb +28 -1
- data/lib/rubocop/cop/metrics/perceived_complexity.rb +2 -2
- data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +3 -6
- data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +9 -6
- data/lib/rubocop/cop/migration/department_name.rb +1 -1
- 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 +23 -2
- data/lib/rubocop/cop/mixin/allowed_pattern.rb +17 -1
- data/lib/rubocop/cop/mixin/annotation_comment.rb +14 -7
- data/lib/rubocop/cop/mixin/check_line_breakable.rb +5 -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/def_node.rb +2 -7
- data/lib/rubocop/cop/mixin/documentation_comment.rb +1 -1
- data/lib/rubocop/cop/mixin/enforce_superclass.rb +2 -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 +156 -12
- data/lib/rubocop/cop/mixin/hash_transform_method.rb +13 -9
- data/lib/rubocop/cop/mixin/line_length_help.rb +11 -2
- data/lib/rubocop/cop/mixin/method_complexity.rb +13 -16
- data/lib/rubocop/cop/mixin/min_branches_count.rb +40 -0
- data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +34 -12
- 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 +58 -1
- data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +1 -1
- data/lib/rubocop/cop/mixin/range_help.rb +28 -7
- 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/statement_modifier.rb +17 -2
- data/lib/rubocop/cop/mixin/string_help.rb +1 -1
- 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/accessor_method_name.rb +4 -2
- data/lib/rubocop/cop/naming/ascii_identifiers.rb +1 -1
- data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +1 -1
- data/lib/rubocop/cop/naming/block_forwarding.rb +7 -3
- data/lib/rubocop/cop/naming/block_parameter_name.rb +2 -2
- data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +4 -2
- data/lib/rubocop/cop/naming/constant_name.rb +3 -3
- data/lib/rubocop/cop/naming/file_name.rb +1 -1
- data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +2 -2
- data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +1 -1
- data/lib/rubocop/cop/naming/inclusive_language.rb +5 -2
- data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +1 -1
- data/lib/rubocop/cop/naming/method_name.rb +2 -2
- data/lib/rubocop/cop/naming/method_parameter_name.rb +1 -1
- data/lib/rubocop/cop/naming/predicate_name.rb +31 -2
- data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +2 -2
- data/lib/rubocop/cop/naming/variable_name.rb +1 -1
- data/lib/rubocop/cop/naming/variable_number.rb +18 -18
- data/lib/rubocop/cop/registry.rb +73 -45
- data/lib/rubocop/cop/security/compound_hash.rb +3 -2
- data/lib/rubocop/cop/security/eval.rb +1 -1
- data/lib/rubocop/cop/security/json_load.rb +1 -1
- data/lib/rubocop/cop/security/marshal_load.rb +1 -1
- data/lib/rubocop/cop/security/open.rb +1 -1
- data/lib/rubocop/cop/security/yaml_load.rb +1 -1
- data/lib/rubocop/cop/style/access_modifier_declarations.rb +92 -3
- data/lib/rubocop/cop/style/accessor_grouping.rb +45 -19
- data/lib/rubocop/cop/style/alias.rb +10 -2
- data/lib/rubocop/cop/style/and_or.rb +11 -11
- data/lib/rubocop/cop/style/arguments_forwarding.rb +7 -6
- data/lib/rubocop/cop/style/array_coercion.rb +1 -1
- data/lib/rubocop/cop/style/array_intersect.rb +111 -0
- data/lib/rubocop/cop/style/array_join.rb +1 -1
- data/lib/rubocop/cop/style/ascii_comments.rb +2 -2
- data/lib/rubocop/cop/style/attr.rb +1 -1
- data/lib/rubocop/cop/style/auto_resource_cleanup.rb +1 -1
- data/lib/rubocop/cop/style/bare_percent_literals.rb +1 -1
- data/lib/rubocop/cop/style/bisected_attr_accessor.rb +2 -2
- data/lib/rubocop/cop/style/block_comments.rb +3 -3
- data/lib/rubocop/cop/style/block_delimiters.rb +47 -11
- data/lib/rubocop/cop/style/case_equality.rb +41 -11
- data/lib/rubocop/cop/style/case_like_if.rb +21 -4
- data/lib/rubocop/cop/style/character_literal.rb +1 -1
- data/lib/rubocop/cop/style/class_and_module_children.rb +8 -15
- data/lib/rubocop/cop/style/class_check.rb +1 -1
- data/lib/rubocop/cop/style/class_equality_comparison.rb +55 -6
- data/lib/rubocop/cop/style/class_methods.rb +1 -1
- data/lib/rubocop/cop/style/class_methods_definitions.rb +3 -2
- data/lib/rubocop/cop/style/class_vars.rb +1 -1
- data/lib/rubocop/cop/style/collection_compact.rb +13 -4
- data/lib/rubocop/cop/style/collection_methods.rb +3 -1
- data/lib/rubocop/cop/style/colon_method_call.rb +1 -1
- data/lib/rubocop/cop/style/colon_method_definition.rb +1 -1
- data/lib/rubocop/cop/style/combinable_loops.rb +4 -2
- data/lib/rubocop/cop/style/command_literal.rb +2 -2
- data/lib/rubocop/cop/style/comment_annotation.rb +2 -2
- data/lib/rubocop/cop/style/commented_keyword.rb +5 -5
- 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 +8 -13
- data/lib/rubocop/cop/style/constant_visibility.rb +1 -1
- data/lib/rubocop/cop/style/date_time.rb +1 -1
- data/lib/rubocop/cop/style/def_with_parentheses.rb +1 -1
- data/lib/rubocop/cop/style/dir.rb +4 -1
- data/lib/rubocop/cop/style/dir_empty.rb +60 -0
- data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +1 -1
- data/lib/rubocop/cop/style/documentation.rb +22 -10
- data/lib/rubocop/cop/style/documentation_method.rb +11 -5
- data/lib/rubocop/cop/style/double_negation.rb +3 -1
- data/lib/rubocop/cop/style/each_for_simple_loop.rb +42 -7
- data/lib/rubocop/cop/style/each_with_object.rb +41 -10
- data/lib/rubocop/cop/style/empty_block_parameter.rb +3 -3
- data/lib/rubocop/cop/style/empty_case_condition.rb +1 -1
- data/lib/rubocop/cop/style/empty_else.rb +40 -3
- data/lib/rubocop/cop/style/empty_heredoc.rb +73 -0
- data/lib/rubocop/cop/style/empty_lambda_parameter.rb +3 -3
- data/lib/rubocop/cop/style/empty_literal.rb +1 -1
- data/lib/rubocop/cop/style/empty_method.rb +18 -3
- data/lib/rubocop/cop/style/encoding.rb +2 -2
- data/lib/rubocop/cop/style/end_block.rb +1 -1
- data/lib/rubocop/cop/style/endless_method.rb +2 -2
- data/lib/rubocop/cop/style/env_home.rb +1 -1
- data/lib/rubocop/cop/style/eval_with_location.rb +5 -5
- data/lib/rubocop/cop/style/even_odd.rb +1 -1
- data/lib/rubocop/cop/style/expand_path_arguments.rb +1 -1
- data/lib/rubocop/cop/style/explicit_block_argument.rb +7 -3
- data/lib/rubocop/cop/style/exponential_notation.rb +1 -1
- data/lib/rubocop/cop/style/fetch_env_var.rb +37 -224
- data/lib/rubocop/cop/style/file_empty.rb +71 -0
- data/lib/rubocop/cop/style/file_read.rb +1 -1
- data/lib/rubocop/cop/style/file_write.rb +1 -1
- data/lib/rubocop/cop/style/float_division.rb +1 -1
- data/lib/rubocop/cop/style/for.rb +3 -1
- data/lib/rubocop/cop/style/format_string.rb +1 -1
- data/lib/rubocop/cop/style/format_string_token.rb +73 -23
- data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +6 -3
- data/lib/rubocop/cop/style/global_std_stream.rb +1 -1
- data/lib/rubocop/cop/style/global_vars.rb +1 -1
- data/lib/rubocop/cop/style/guard_clause.rb +132 -43
- data/lib/rubocop/cop/style/hash_as_last_array_item.rb +2 -1
- data/lib/rubocop/cop/style/hash_conversion.rb +1 -1
- data/lib/rubocop/cop/style/hash_each_methods.rb +49 -13
- data/lib/rubocop/cop/style/hash_except.rb +89 -9
- data/lib/rubocop/cop/style/hash_like_case.rb +4 -10
- data/lib/rubocop/cop/style/hash_syntax.rb +25 -4
- data/lib/rubocop/cop/style/hash_transform_keys.rb +6 -1
- data/lib/rubocop/cop/style/hash_transform_values.rb +4 -1
- data/lib/rubocop/cop/style/identical_conditional_branches.rb +17 -2
- data/lib/rubocop/cop/style/if_unless_modifier.rb +77 -10
- data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +31 -4
- data/lib/rubocop/cop/style/if_with_semicolon.rb +4 -4
- data/lib/rubocop/cop/style/implicit_runtime_error.rb +3 -3
- data/lib/rubocop/cop/style/in_pattern_then.rb +1 -1
- data/lib/rubocop/cop/style/infinite_loop.rb +2 -5
- data/lib/rubocop/cop/style/inline_comment.rb +1 -1
- data/lib/rubocop/cop/style/inverse_methods.rb +17 -13
- data/lib/rubocop/cop/style/invertible_unless_condition.rb +114 -0
- data/lib/rubocop/cop/style/ip_addresses.rb +1 -1
- data/lib/rubocop/cop/style/keyword_parameters_order.rb +2 -2
- data/lib/rubocop/cop/style/lambda.rb +1 -1
- data/lib/rubocop/cop/style/lambda_call.rb +1 -1
- data/lib/rubocop/cop/style/line_end_concatenation.rb +6 -3
- data/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
- data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +136 -0
- data/lib/rubocop/cop/style/map_to_hash.rb +3 -3
- data/lib/rubocop/cop/style/map_to_set.rb +61 -0
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +39 -19
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +5 -1
- data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +9 -9
- data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +22 -3
- data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +5 -2
- data/lib/rubocop/cop/style/method_def_parentheses.rb +12 -5
- data/lib/rubocop/cop/style/min_max.rb +4 -4
- data/lib/rubocop/cop/style/min_max_comparison.rb +83 -0
- data/lib/rubocop/cop/style/missing_else.rb +37 -25
- data/lib/rubocop/cop/style/missing_respond_to_missing.rb +1 -1
- data/lib/rubocop/cop/style/mixin_grouping.rb +5 -5
- data/lib/rubocop/cop/style/mixin_usage.rb +1 -1
- data/lib/rubocop/cop/style/module_function.rb +30 -8
- data/lib/rubocop/cop/style/multiline_block_chain.rb +4 -2
- data/lib/rubocop/cop/style/multiline_if_modifier.rb +2 -6
- data/lib/rubocop/cop/style/multiline_if_then.rb +1 -1
- data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +3 -5
- data/lib/rubocop/cop/style/multiline_memoization.rb +3 -3
- data/lib/rubocop/cop/style/multiline_method_signature.rb +3 -3
- data/lib/rubocop/cop/style/multiline_ternary_operator.rb +21 -6
- data/lib/rubocop/cop/style/multiline_when_then.rb +2 -4
- data/lib/rubocop/cop/style/multiple_comparison.rb +1 -1
- data/lib/rubocop/cop/style/mutable_constant.rb +1 -1
- data/lib/rubocop/cop/style/negated_if_else_condition.rb +18 -11
- data/lib/rubocop/cop/style/nested_file_dirname.rb +1 -1
- data/lib/rubocop/cop/style/nested_modifier.rb +1 -1
- data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +11 -2
- data/lib/rubocop/cop/style/nested_ternary_operator.rb +20 -8
- data/lib/rubocop/cop/style/next.rb +3 -5
- data/lib/rubocop/cop/style/nil_comparison.rb +1 -1
- data/lib/rubocop/cop/style/nil_lambda.rb +5 -5
- data/lib/rubocop/cop/style/non_nil_check.rb +1 -1
- data/lib/rubocop/cop/style/not.rb +2 -2
- data/lib/rubocop/cop/style/numbered_parameters.rb +1 -1
- data/lib/rubocop/cop/style/numbered_parameters_limit.rb +12 -4
- data/lib/rubocop/cop/style/numeric_literal_prefix.rb +1 -1
- data/lib/rubocop/cop/style/numeric_literals.rb +16 -1
- data/lib/rubocop/cop/style/numeric_predicate.rb +53 -11
- data/lib/rubocop/cop/style/object_then.rb +6 -1
- data/lib/rubocop/cop/style/one_line_conditional.rb +4 -7
- data/lib/rubocop/cop/style/open_struct_use.rb +1 -1
- data/lib/rubocop/cop/style/operator_method_call.rb +67 -0
- data/lib/rubocop/cop/style/option_hash.rb +1 -1
- data/lib/rubocop/cop/style/optional_arguments.rb +1 -1
- data/lib/rubocop/cop/style/optional_boolean_parameter.rb +1 -1
- data/lib/rubocop/cop/style/or_assignment.rb +1 -1
- data/lib/rubocop/cop/style/parallel_assignment.rb +3 -1
- data/lib/rubocop/cop/style/parentheses_around_condition.rb +1 -1
- data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
- data/lib/rubocop/cop/style/percent_q_literals.rb +1 -1
- data/lib/rubocop/cop/style/perl_backrefs.rb +23 -2
- data/lib/rubocop/cop/style/preferred_hash_methods.rb +1 -1
- data/lib/rubocop/cop/style/proc.rb +5 -2
- data/lib/rubocop/cop/style/quoted_symbols.rb +1 -1
- data/lib/rubocop/cop/style/raise_args.rb +1 -1
- data/lib/rubocop/cop/style/random_with_offset.rb +1 -1
- data/lib/rubocop/cop/style/redundant_argument.rb +5 -2
- data/lib/rubocop/cop/style/redundant_assignment.rb +1 -1
- data/lib/rubocop/cop/style/redundant_begin.rb +20 -6
- data/lib/rubocop/cop/style/redundant_capital_w.rb +1 -1
- data/lib/rubocop/cop/style/redundant_condition.rb +50 -13
- 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_double_splat_hash_braces.rb +45 -0
- data/lib/rubocop/cop/style/redundant_each.rb +116 -0
- data/lib/rubocop/cop/style/redundant_exception.rb +1 -1
- data/lib/rubocop/cop/style/redundant_fetch_block.rb +2 -2
- data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +1 -1
- data/lib/rubocop/cop/style/redundant_freeze.rb +1 -1
- 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 +24 -3
- data/lib/rubocop/cop/style/redundant_parentheses.rb +23 -25
- data/lib/rubocop/cop/style/redundant_percent_q.rb +1 -1
- data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +9 -3
- data/lib/rubocop/cop/style/redundant_regexp_escape.rb +21 -4
- data/lib/rubocop/cop/style/redundant_return.rb +9 -2
- data/lib/rubocop/cop/style/redundant_self.rb +3 -1
- data/lib/rubocop/cop/style/redundant_self_assignment.rb +2 -2
- data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +1 -1
- data/lib/rubocop/cop/style/redundant_sort.rb +25 -10
- data/lib/rubocop/cop/style/redundant_sort_by.rb +25 -9
- data/lib/rubocop/cop/style/redundant_string_escape.rb +184 -0
- data/lib/rubocop/cop/style/regexp_literal.rb +1 -1
- data/lib/rubocop/cop/style/require_order.rb +133 -0
- data/lib/rubocop/cop/style/rescue_modifier.rb +2 -2
- data/lib/rubocop/cop/style/rescue_standard_error.rb +15 -15
- data/lib/rubocop/cop/style/return_nil.rb +1 -1
- data/lib/rubocop/cop/style/safe_navigation.rb +45 -11
- data/lib/rubocop/cop/style/sample.rb +1 -1
- data/lib/rubocop/cop/style/select_by_regexp.rb +14 -6
- data/lib/rubocop/cop/style/self_assignment.rb +3 -3
- data/lib/rubocop/cop/style/semicolon.rb +53 -6
- data/lib/rubocop/cop/style/send.rb +1 -1
- data/lib/rubocop/cop/style/signal_exception.rb +9 -7
- data/lib/rubocop/cop/style/single_line_block_params.rb +2 -2
- data/lib/rubocop/cop/style/single_line_methods.rb +2 -2
- data/lib/rubocop/cop/style/slicing_with_range.rb +2 -2
- data/lib/rubocop/cop/style/sole_nested_conditional.rb +44 -16
- data/lib/rubocop/cop/style/static_class.rb +33 -2
- data/lib/rubocop/cop/style/stderr_puts.rb +2 -2
- data/lib/rubocop/cop/style/string_concatenation.rb +6 -7
- data/lib/rubocop/cop/style/string_hash_keys.rb +5 -2
- data/lib/rubocop/cop/style/string_literals.rb +1 -5
- data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +1 -1
- data/lib/rubocop/cop/style/string_methods.rb +1 -1
- data/lib/rubocop/cop/style/strip.rb +1 -1
- data/lib/rubocop/cop/style/struct_inheritance.rb +5 -5
- data/lib/rubocop/cop/style/swap_values.rb +2 -2
- data/lib/rubocop/cop/style/symbol_array.rb +12 -7
- data/lib/rubocop/cop/style/symbol_literal.rb +1 -1
- data/lib/rubocop/cop/style/symbol_proc.rb +46 -14
- data/lib/rubocop/cop/style/ternary_parentheses.rb +2 -14
- data/lib/rubocop/cop/style/top_level_method_definition.rb +3 -1
- data/lib/rubocop/cop/style/trailing_body_on_class.rb +1 -1
- data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +1 -1
- data/lib/rubocop/cop/style/trailing_body_on_module.rb +1 -1
- data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +5 -5
- data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +1 -1
- data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +2 -2
- data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +1 -1
- data/lib/rubocop/cop/style/trailing_method_end_statement.rb +1 -1
- data/lib/rubocop/cop/style/trailing_underscore_variable.rb +2 -2
- data/lib/rubocop/cop/style/trivial_accessors.rb +4 -1
- data/lib/rubocop/cop/style/unless_else.rb +1 -1
- data/lib/rubocop/cop/style/unless_logical_operators.rb +1 -1
- data/lib/rubocop/cop/style/unpack_first.rb +8 -5
- data/lib/rubocop/cop/style/variable_interpolation.rb +1 -1
- data/lib/rubocop/cop/style/when_then.rb +1 -1
- data/lib/rubocop/cop/style/word_array.rb +60 -6
- data/lib/rubocop/cop/style/yoda_condition.rb +14 -7
- data/lib/rubocop/cop/style/yoda_expression.rb +90 -0
- data/lib/rubocop/cop/style/zero_length_predicate.rb +41 -20
- data/lib/rubocop/cop/team.rb +64 -57
- data/lib/rubocop/cop/util.rb +44 -8
- data/lib/rubocop/cop/variable_force/assignment.rb +1 -1
- 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 +4 -2
- data/lib/rubocop/cop/variable_force.rb +18 -30
- data/lib/rubocop/cops_documentation_generator.rb +53 -13
- 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/range.rb +15 -0
- data/lib/rubocop/feature_loader.rb +94 -0
- data/lib/rubocop/file_patterns.rb +43 -0
- data/lib/rubocop/formatter/clang_style_formatter.rb +1 -1
- data/lib/rubocop/formatter/disabled_config_formatter.rb +36 -16
- data/lib/rubocop/formatter/formatter_set.rb +20 -19
- data/lib/rubocop/formatter/git_hub_actions_formatter.rb +15 -2
- data/lib/rubocop/formatter/html_formatter.rb +4 -5
- data/lib/rubocop/formatter/junit_formatter.rb +4 -1
- data/lib/rubocop/formatter/markdown_formatter.rb +3 -1
- data/lib/rubocop/formatter/offense_count_formatter.rb +10 -5
- data/lib/rubocop/formatter/simple_text_formatter.rb +9 -8
- data/lib/rubocop/formatter/tap_formatter.rb +1 -1
- data/lib/rubocop/formatter/worst_offenders_formatter.rb +6 -3
- data/lib/rubocop/formatter.rb +34 -0
- data/lib/rubocop/magic_comment.rb +27 -2
- data/lib/rubocop/options.rb +128 -53
- data/lib/rubocop/path_util.rb +50 -22
- data/lib/rubocop/rake_task.rb +34 -9
- data/lib/rubocop/result_cache.rb +26 -23
- data/lib/rubocop/rspec/cop_helper.rb +26 -3
- data/lib/rubocop/rspec/expect_offense.rb +9 -7
- data/lib/rubocop/rspec/shared_contexts.rb +46 -9
- data/lib/rubocop/rspec/support.rb +16 -2
- data/lib/rubocop/runner.rb +78 -23
- data/lib/rubocop/server/cache.rb +155 -0
- data/lib/rubocop/server/cli.rb +147 -0
- data/lib/rubocop/server/client_command/base.rb +44 -0
- data/lib/rubocop/server/client_command/exec.rb +64 -0
- data/lib/rubocop/server/client_command/restart.rb +25 -0
- data/lib/rubocop/server/client_command/start.rb +48 -0
- data/lib/rubocop/server/client_command/status.rb +28 -0
- data/lib/rubocop/server/client_command/stop.rb +31 -0
- data/lib/rubocop/server/client_command.rb +26 -0
- data/lib/rubocop/server/core.rb +111 -0
- data/lib/rubocop/server/errors.rb +23 -0
- data/lib/rubocop/server/helper.rb +34 -0
- data/lib/rubocop/server/server_command/base.rb +50 -0
- data/lib/rubocop/server/server_command/exec.rb +34 -0
- data/lib/rubocop/server/server_command/stop.rb +24 -0
- data/lib/rubocop/server/server_command.rb +21 -0
- data/lib/rubocop/server/socket_reader.rb +69 -0
- data/lib/rubocop/server.rb +53 -0
- data/lib/rubocop/target_finder.rb +1 -1
- data/lib/rubocop/target_ruby.rb +8 -7
- data/lib/rubocop/version.rb +22 -9
- data/lib/rubocop.rb +50 -35
- metadata +97 -36
- data/lib/rubocop/cop/gemspec/date_assignment.rb +0 -49
- data/lib/rubocop/cop/mixin/ignored_methods.rb +0 -52
data/config/default.yml
CHANGED
@@ -153,13 +153,18 @@ AllCops:
|
|
153
153
|
rubocop-sequel: [sequel]
|
154
154
|
rubocop-rake: [rake]
|
155
155
|
rubocop-graphql: [graphql]
|
156
|
+
rubocop-capybara: [capybara]
|
157
|
+
# Enable/Disable checking the methods extended by Active Support.
|
158
|
+
ActiveSupportExtensionsEnabled: false
|
156
159
|
|
157
160
|
#################### Bundler ###############################
|
158
161
|
|
159
162
|
Bundler/DuplicatedGem:
|
160
163
|
Description: 'Checks for duplicate gem entries in Gemfile.'
|
161
164
|
Enabled: true
|
165
|
+
Severity: warning
|
162
166
|
VersionAdded: '0.46'
|
167
|
+
VersionChanged: '1.40'
|
163
168
|
Include:
|
164
169
|
- '**/*.gemfile'
|
165
170
|
- '**/Gemfile'
|
@@ -211,7 +216,9 @@ Bundler/InsecureProtocolSource:
|
|
211
216
|
because HTTP requests are insecure. Please change your source to
|
212
217
|
'https://rubygems.org' if possible, or 'http://rubygems.org' if not.
|
213
218
|
Enabled: true
|
219
|
+
Severity: warning
|
214
220
|
VersionAdded: '0.50'
|
221
|
+
VersionChanged: '1.40'
|
215
222
|
AllowHttpProtocol: true
|
216
223
|
Include:
|
217
224
|
- '**/*.gemfile'
|
@@ -235,13 +242,6 @@ Bundler/OrderedGems:
|
|
235
242
|
|
236
243
|
#################### Gemspec ###############################
|
237
244
|
|
238
|
-
Gemspec/DateAssignment:
|
239
|
-
Description: 'Checks that `date =` is not used in gemspec file, it is set automatically when the gem is packaged.'
|
240
|
-
Enabled: pending
|
241
|
-
VersionAdded: '1.10'
|
242
|
-
Include:
|
243
|
-
- '**/*.gemspec'
|
244
|
-
|
245
245
|
Gemspec/DependencyVersion:
|
246
246
|
Description: 'Requires or forbids specifying gem dependency versions.'
|
247
247
|
Enabled: false
|
@@ -254,10 +254,36 @@ Gemspec/DependencyVersion:
|
|
254
254
|
- '**/*.gemspec'
|
255
255
|
AllowedGems: []
|
256
256
|
|
257
|
+
Gemspec/DeprecatedAttributeAssignment:
|
258
|
+
Description: Checks that deprecated attribute assignments are not set in a gemspec file.
|
259
|
+
Enabled: pending
|
260
|
+
Severity: warning
|
261
|
+
VersionAdded: '1.30'
|
262
|
+
VersionChanged: '1.40'
|
263
|
+
Include:
|
264
|
+
- '**/*.gemspec'
|
265
|
+
|
266
|
+
Gemspec/DevelopmentDependencies:
|
267
|
+
Description: Checks that development dependencies are specified in Gemfile rather than gemspec.
|
268
|
+
Enabled: pending
|
269
|
+
VersionAdded: '1.44'
|
270
|
+
EnforcedStyle: Gemfile
|
271
|
+
SupportedStyles:
|
272
|
+
- Gemfile
|
273
|
+
- gems.rb
|
274
|
+
- gemspec
|
275
|
+
AllowedGems: []
|
276
|
+
Include:
|
277
|
+
- '**/*.gemspec'
|
278
|
+
- '**/Gemfile'
|
279
|
+
- '**/gems.rb'
|
280
|
+
|
257
281
|
Gemspec/DuplicatedAssignment:
|
258
282
|
Description: 'An attribute assignment method calls should be listed only once in a gemspec.'
|
259
283
|
Enabled: true
|
284
|
+
Severity: warning
|
260
285
|
VersionAdded: '0.52'
|
286
|
+
VersionChanged: '1.40'
|
261
287
|
Include:
|
262
288
|
- '**/*.gemspec'
|
263
289
|
|
@@ -276,7 +302,9 @@ Gemspec/OrderedDependencies:
|
|
276
302
|
Gemspec/RequireMFA:
|
277
303
|
Description: 'Checks that the gemspec has metadata to require Multi-Factor Authentication from RubyGems.'
|
278
304
|
Enabled: pending
|
305
|
+
Severity: warning
|
279
306
|
VersionAdded: '1.23'
|
307
|
+
VersionChanged: '1.40'
|
280
308
|
Reference:
|
281
309
|
- https://guides.rubygems.org/mfa-requirement-opt-in/
|
282
310
|
Include:
|
@@ -285,8 +313,9 @@ Gemspec/RequireMFA:
|
|
285
313
|
Gemspec/RequiredRubyVersion:
|
286
314
|
Description: 'Checks that `required_ruby_version` of gemspec is specified and equal to `TargetRubyVersion` of .rubocop.yml.'
|
287
315
|
Enabled: true
|
316
|
+
Severity: warning
|
288
317
|
VersionAdded: '0.52'
|
289
|
-
VersionChanged: '1.
|
318
|
+
VersionChanged: '1.40'
|
290
319
|
Include:
|
291
320
|
- '**/*.gemspec'
|
292
321
|
|
@@ -294,7 +323,9 @@ Gemspec/RubyVersionGlobalsUsage:
|
|
294
323
|
Description: Checks usage of RUBY_VERSION in gemspec.
|
295
324
|
StyleGuide: '#no-ruby-version-in-the-gemspec'
|
296
325
|
Enabled: true
|
326
|
+
Severity: warning
|
297
327
|
VersionAdded: '0.72'
|
328
|
+
VersionChanged: '1.40'
|
298
329
|
Include:
|
299
330
|
- '**/*.gemspec'
|
300
331
|
|
@@ -377,7 +408,7 @@ Layout/AssignmentIndentation:
|
|
377
408
|
right-hand-side of a multi-line assignment.
|
378
409
|
Enabled: true
|
379
410
|
VersionAdded: '0.49'
|
380
|
-
VersionChanged: '
|
411
|
+
VersionChanged: '1.45'
|
381
412
|
# By default the indentation width from `Layout/IndentationWidth` is used,
|
382
413
|
# but it can be overridden by setting this parameter.
|
383
414
|
IndentationWidth: ~
|
@@ -746,6 +777,7 @@ Layout/FirstArrayElementLineBreak:
|
|
746
777
|
multi-line array.
|
747
778
|
Enabled: false
|
748
779
|
VersionAdded: '0.49'
|
780
|
+
AllowMultilineFinalElement: false
|
749
781
|
|
750
782
|
Layout/FirstHashElementIndentation:
|
751
783
|
Description: 'Checks the indentation of the first key in a hash literal.'
|
@@ -778,6 +810,7 @@ Layout/FirstHashElementLineBreak:
|
|
778
810
|
multi-line hash.
|
779
811
|
Enabled: false
|
780
812
|
VersionAdded: '0.49'
|
813
|
+
AllowMultilineFinalElement: false
|
781
814
|
|
782
815
|
Layout/FirstMethodArgumentLineBreak:
|
783
816
|
Description: >-
|
@@ -785,6 +818,7 @@ Layout/FirstMethodArgumentLineBreak:
|
|
785
818
|
multi-line method call.
|
786
819
|
Enabled: false
|
787
820
|
VersionAdded: '0.49'
|
821
|
+
AllowMultilineFinalElement: false
|
788
822
|
|
789
823
|
Layout/FirstMethodParameterLineBreak:
|
790
824
|
Description: >-
|
@@ -792,6 +826,7 @@ Layout/FirstMethodParameterLineBreak:
|
|
792
826
|
multi-line method parameter definition.
|
793
827
|
Enabled: false
|
794
828
|
VersionAdded: '0.49'
|
829
|
+
AllowMultilineFinalElement: false
|
795
830
|
|
796
831
|
Layout/FirstParameterIndentation:
|
797
832
|
Description: >-
|
@@ -928,7 +963,7 @@ Layout/IndentationStyle:
|
|
928
963
|
VersionChanged: '0.82'
|
929
964
|
# By default the indentation width from `Layout/IndentationWidth` is used,
|
930
965
|
# but it can be overridden by setting this parameter.
|
931
|
-
# It is used during
|
966
|
+
# It is used during autocorrection to determine how many spaces should
|
932
967
|
# replace each tab.
|
933
968
|
IndentationWidth: ~
|
934
969
|
EnforcedStyle: spaces
|
@@ -944,7 +979,6 @@ Layout/IndentationWidth:
|
|
944
979
|
# Number of spaces for each indentation level.
|
945
980
|
Width: 2
|
946
981
|
AllowedPatterns: []
|
947
|
-
IgnoredPatterns: [] # deprecated
|
948
982
|
|
949
983
|
Layout/InitialIndentation:
|
950
984
|
Description: >-
|
@@ -967,6 +1001,29 @@ Layout/LeadingEmptyLines:
|
|
967
1001
|
VersionAdded: '0.57'
|
968
1002
|
VersionChanged: '0.77'
|
969
1003
|
|
1004
|
+
Layout/LineContinuationLeadingSpace:
|
1005
|
+
Description: >-
|
1006
|
+
Use trailing spaces instead of leading spaces in strings
|
1007
|
+
broken over multiple lines (by a backslash).
|
1008
|
+
Enabled: pending
|
1009
|
+
VersionAdded: '1.31'
|
1010
|
+
VersionChanged: '1.45'
|
1011
|
+
EnforcedStyle: trailing
|
1012
|
+
SupportedStyles:
|
1013
|
+
- leading
|
1014
|
+
- trailing
|
1015
|
+
|
1016
|
+
Layout/LineContinuationSpacing:
|
1017
|
+
Description: 'Checks the spacing in front of backslash in line continuations.'
|
1018
|
+
Enabled: pending
|
1019
|
+
AutoCorrect: true
|
1020
|
+
SafeAutoCorrect: true
|
1021
|
+
VersionAdded: '1.31'
|
1022
|
+
EnforcedStyle: space
|
1023
|
+
SupportedStyles:
|
1024
|
+
- space
|
1025
|
+
- no_space
|
1026
|
+
|
970
1027
|
Layout/LineEndStringConcatenationIndentation:
|
971
1028
|
Description: >-
|
972
1029
|
Checks the indentation of the next line after a line that
|
@@ -1002,7 +1059,6 @@ Layout/LineLength:
|
|
1002
1059
|
# elements. Strings will be converted to Regexp objects. A line that matches
|
1003
1060
|
# any regular expression listed in this option will be ignored by LineLength.
|
1004
1061
|
AllowedPatterns: []
|
1005
|
-
IgnoredPatterns: [] # deprecated
|
1006
1062
|
|
1007
1063
|
Layout/MultilineArrayBraceLayout:
|
1008
1064
|
Description: >-
|
@@ -1026,6 +1082,7 @@ Layout/MultilineArrayLineBreaks:
|
|
1026
1082
|
starts on a separate line.
|
1027
1083
|
Enabled: false
|
1028
1084
|
VersionAdded: '0.67'
|
1085
|
+
AllowMultilineFinalElement: false
|
1029
1086
|
|
1030
1087
|
Layout/MultilineAssignmentLayout:
|
1031
1088
|
Description: 'Check for a newline after the assignment operator in multi-line assignments.'
|
@@ -1076,6 +1133,7 @@ Layout/MultilineHashKeyLineBreaks:
|
|
1076
1133
|
starts on a separate line.
|
1077
1134
|
Enabled: false
|
1078
1135
|
VersionAdded: '0.67'
|
1136
|
+
AllowMultilineFinalElement: false
|
1079
1137
|
|
1080
1138
|
Layout/MultilineMethodArgumentLineBreaks:
|
1081
1139
|
Description: >-
|
@@ -1083,6 +1141,7 @@ Layout/MultilineMethodArgumentLineBreaks:
|
|
1083
1141
|
starts on a separate line.
|
1084
1142
|
Enabled: false
|
1085
1143
|
VersionAdded: '0.67'
|
1144
|
+
AllowMultilineFinalElement: false
|
1086
1145
|
|
1087
1146
|
Layout/MultilineMethodCallBraceLayout:
|
1088
1147
|
Description: >-
|
@@ -1131,6 +1190,14 @@ Layout/MultilineMethodDefinitionBraceLayout:
|
|
1131
1190
|
- new_line
|
1132
1191
|
- same_line
|
1133
1192
|
|
1193
|
+
Layout/MultilineMethodParameterLineBreaks:
|
1194
|
+
Description: >-
|
1195
|
+
Checks that each parameter in a multi-line method definition
|
1196
|
+
starts on a separate line.
|
1197
|
+
Enabled: false
|
1198
|
+
VersionAdded: '1.32'
|
1199
|
+
AllowMultilineFinalElement: false
|
1200
|
+
|
1134
1201
|
Layout/MultilineOperationIndentation:
|
1135
1202
|
Description: >-
|
1136
1203
|
Checks indentation of binary operations that span more than
|
@@ -1468,7 +1535,8 @@ Lint/AmbiguousBlockAssociation:
|
|
1468
1535
|
Enabled: true
|
1469
1536
|
VersionAdded: '0.48'
|
1470
1537
|
VersionChanged: '1.13'
|
1471
|
-
|
1538
|
+
AllowedMethods: []
|
1539
|
+
AllowedPatterns: []
|
1472
1540
|
|
1473
1541
|
Lint/AmbiguousOperator:
|
1474
1542
|
Description: >-
|
@@ -1505,7 +1573,9 @@ Lint/AssignmentInCondition:
|
|
1505
1573
|
Description: "Don't use assignment in conditions."
|
1506
1574
|
StyleGuide: '#safe-assignment-in-condition'
|
1507
1575
|
Enabled: true
|
1576
|
+
SafeAutoCorrect: false
|
1508
1577
|
VersionAdded: '0.9'
|
1578
|
+
VersionChanged: '1.45'
|
1509
1579
|
AllowSafeAssignment: true
|
1510
1580
|
|
1511
1581
|
Lint/BigDecimalNew:
|
@@ -1543,6 +1613,11 @@ Lint/ConstantDefinitionInBlock:
|
|
1543
1613
|
AllowedMethods:
|
1544
1614
|
- enums
|
1545
1615
|
|
1616
|
+
Lint/ConstantOverwrittenInRescue:
|
1617
|
+
Description: 'Checks for overwriting an exception with an exception result by use `rescue =>`.'
|
1618
|
+
Enabled: pending
|
1619
|
+
VersionAdded: '1.31'
|
1620
|
+
|
1546
1621
|
Lint/ConstantResolution:
|
1547
1622
|
Description: 'Check that constants are fully qualified with `::`.'
|
1548
1623
|
Enabled: false
|
@@ -1556,13 +1631,13 @@ Lint/Debugger:
|
|
1556
1631
|
Description: 'Check for debugger calls.'
|
1557
1632
|
Enabled: true
|
1558
1633
|
VersionAdded: '0.14'
|
1559
|
-
VersionChanged: '1.
|
1560
|
-
DebuggerReceivers: [] # deprecated
|
1634
|
+
VersionChanged: '1.46'
|
1561
1635
|
DebuggerMethods:
|
1562
1636
|
# Groups are available so that a specific group can be disabled in
|
1563
1637
|
# a user's configuration, but are otherwise not significant.
|
1564
1638
|
Kernel:
|
1565
1639
|
- binding.irb
|
1640
|
+
- Kernel.binding.irb
|
1566
1641
|
Byebug:
|
1567
1642
|
- byebug
|
1568
1643
|
- remote_byebug
|
@@ -1580,6 +1655,9 @@ Lint/Debugger:
|
|
1580
1655
|
- binding.pry
|
1581
1656
|
- binding.remote_pry
|
1582
1657
|
- binding.pry_remote
|
1658
|
+
- Kernel.binding.pry
|
1659
|
+
- Kernel.binding.remote_pry
|
1660
|
+
- Kernel.binding.pry_remote
|
1583
1661
|
- Pry.rescue
|
1584
1662
|
Rails:
|
1585
1663
|
- debugger
|
@@ -1598,7 +1676,7 @@ Lint/DeprecatedConstants:
|
|
1598
1676
|
Description: 'Checks for deprecated constants.'
|
1599
1677
|
Enabled: pending
|
1600
1678
|
VersionAdded: '1.8'
|
1601
|
-
VersionChanged: '1.
|
1679
|
+
VersionChanged: '1.40'
|
1602
1680
|
# You can configure deprecated constants.
|
1603
1681
|
# If there is an alternative method, you can set alternative value as `Alternative`.
|
1604
1682
|
# And you can set the deprecated version as `DeprecatedVersion`.
|
@@ -1625,6 +1703,12 @@ Lint/DeprecatedConstants:
|
|
1625
1703
|
'Random::DEFAULT':
|
1626
1704
|
Alternative: 'Random.new'
|
1627
1705
|
DeprecatedVersion: '3.0'
|
1706
|
+
'Struct::Group':
|
1707
|
+
Alternative: 'Etc::Group'
|
1708
|
+
DeprecatedVersion: '3.0'
|
1709
|
+
'Struct::Passwd':
|
1710
|
+
Alternative: 'Etc::Passwd'
|
1711
|
+
DeprecatedVersion: '3.0'
|
1628
1712
|
|
1629
1713
|
Lint/DeprecatedOpenSSLConstant:
|
1630
1714
|
Description: "Don't use algorithm constants for `OpenSSL::Cipher` and `OpenSSL::Digest`."
|
@@ -1662,6 +1746,11 @@ Lint/DuplicateHashKey:
|
|
1662
1746
|
VersionAdded: '0.34'
|
1663
1747
|
VersionChanged: '0.77'
|
1664
1748
|
|
1749
|
+
Lint/DuplicateMagicComment:
|
1750
|
+
Description: 'Check for duplicated magic comments.'
|
1751
|
+
Enabled: pending
|
1752
|
+
VersionAdded: '1.37'
|
1753
|
+
|
1665
1754
|
Lint/DuplicateMethods:
|
1666
1755
|
Description: 'Check for duplicate method definitions.'
|
1667
1756
|
Enabled: true
|
@@ -1712,8 +1801,10 @@ Lint/EmptyClass:
|
|
1712
1801
|
Lint/EmptyConditionalBody:
|
1713
1802
|
Description: 'Checks for the presence of `if`, `elsif` and `unless` branches without a body.'
|
1714
1803
|
Enabled: true
|
1804
|
+
SafeAutoCorrect: false
|
1715
1805
|
AllowComments: true
|
1716
1806
|
VersionAdded: '0.89'
|
1807
|
+
VersionChanged: '1.34'
|
1717
1808
|
|
1718
1809
|
Lint/EmptyEnsure:
|
1719
1810
|
Description: 'Checks for empty ensure block.'
|
@@ -1842,11 +1933,11 @@ Lint/InheritException:
|
|
1842
1933
|
- runtime_error
|
1843
1934
|
|
1844
1935
|
Lint/InterpolationCheck:
|
1845
|
-
Description: '
|
1936
|
+
Description: 'Checks for interpolation in a single quoted string.'
|
1846
1937
|
Enabled: true
|
1847
|
-
|
1938
|
+
SafeAutoCorrect: false
|
1848
1939
|
VersionAdded: '0.50'
|
1849
|
-
VersionChanged: '
|
1940
|
+
VersionChanged: '1.40'
|
1850
1941
|
|
1851
1942
|
Lint/LambdaWithoutLiteralBlock:
|
1852
1943
|
Description: 'Checks uses of lambda without a literal block.'
|
@@ -1910,6 +2001,8 @@ Lint/NestedMethodDefinition:
|
|
1910
2001
|
Description: 'Do not use nested method definitions.'
|
1911
2002
|
StyleGuide: '#no-nested-methods'
|
1912
2003
|
Enabled: true
|
2004
|
+
AllowedMethods: []
|
2005
|
+
AllowedPatterns: []
|
1913
2006
|
VersionAdded: '0.32'
|
1914
2007
|
|
1915
2008
|
Lint/NestedPercentLiteral:
|
@@ -1929,6 +2022,13 @@ Lint/NoReturnInBeginEndBlocks:
|
|
1929
2022
|
Enabled: pending
|
1930
2023
|
VersionAdded: '1.2'
|
1931
2024
|
|
2025
|
+
Lint/NonAtomicFileOperation:
|
2026
|
+
Description: Checks for non-atomic file operations.
|
2027
|
+
StyleGuide: '#atomic-file-operations'
|
2028
|
+
Enabled: pending
|
2029
|
+
VersionAdded: '1.31'
|
2030
|
+
SafeAutoCorrect: false
|
2031
|
+
|
1932
2032
|
Lint/NonDeterministicRequireOrder:
|
1933
2033
|
Description: 'Always sort arrays returned by Dir.glob when requiring files.'
|
1934
2034
|
Enabled: true
|
@@ -1946,7 +2046,8 @@ Lint/NumberConversion:
|
|
1946
2046
|
VersionAdded: '0.53'
|
1947
2047
|
VersionChanged: '1.1'
|
1948
2048
|
SafeAutoCorrect: false
|
1949
|
-
|
2049
|
+
AllowedMethods: []
|
2050
|
+
AllowedPatterns: []
|
1950
2051
|
IgnoredClasses:
|
1951
2052
|
- Time
|
1952
2053
|
- DateTime
|
@@ -1965,7 +2066,9 @@ Lint/OrAssignmentToConstant:
|
|
1965
2066
|
Lint/OrderedMagicComments:
|
1966
2067
|
Description: 'Checks the proper ordering of magic comments and whether a magic comment is not placed before a shebang.'
|
1967
2068
|
Enabled: true
|
2069
|
+
SafeAutoCorrect: false
|
1968
2070
|
VersionAdded: '0.53'
|
2071
|
+
VersionChanged: '1.37'
|
1969
2072
|
|
1970
2073
|
Lint/OutOfRangeRegexpRef:
|
1971
2074
|
Description: 'Checks for out of range reference for Regexp because it always returns nil.'
|
@@ -2095,6 +2198,11 @@ Lint/RequireParentheses:
|
|
2095
2198
|
Enabled: true
|
2096
2199
|
VersionAdded: '0.18'
|
2097
2200
|
|
2201
|
+
Lint/RequireRangeParentheses:
|
2202
|
+
Description: 'Checks that a range literal is enclosed in parentheses when the end of the range is at a line break.'
|
2203
|
+
Enabled: pending
|
2204
|
+
VersionAdded: '1.32'
|
2205
|
+
|
2098
2206
|
Lint/RequireRelativeSelfPath:
|
2099
2207
|
Description: 'Checks for uses a file requiring itself with `require_relative`.'
|
2100
2208
|
Enabled: pending
|
@@ -2290,7 +2398,6 @@ Lint/UnreachableLoop:
|
|
2290
2398
|
# RSpec uses `times` in its message expectations
|
2291
2399
|
# eg. `exactly(2).times`
|
2292
2400
|
- !ruby/regexp /(exactly|at_least|at_most)\(\d+\)\.times/
|
2293
|
-
IgnoredPatterns: [] # deprecated
|
2294
2401
|
|
2295
2402
|
Lint/UnusedBlockArgument:
|
2296
2403
|
Description: 'Checks for unused block arguments.'
|
@@ -2341,6 +2448,12 @@ Lint/UselessAssignment:
|
|
2341
2448
|
Enabled: true
|
2342
2449
|
VersionAdded: '0.11'
|
2343
2450
|
|
2451
|
+
Lint/UselessElseWithoutRescue:
|
2452
|
+
Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
|
2453
|
+
Enabled: true
|
2454
|
+
VersionAdded: '0.17'
|
2455
|
+
VersionChanged: '1.31'
|
2456
|
+
|
2344
2457
|
Lint/UselessMethodDefinition:
|
2345
2458
|
Description: 'Checks for useless method definitions.'
|
2346
2459
|
Enabled: true
|
@@ -2348,6 +2461,11 @@ Lint/UselessMethodDefinition:
|
|
2348
2461
|
VersionChanged: '0.91'
|
2349
2462
|
Safe: false
|
2350
2463
|
|
2464
|
+
Lint/UselessRescue:
|
2465
|
+
Description: 'Checks for useless `rescue`s.'
|
2466
|
+
Enabled: pending
|
2467
|
+
VersionAdded: '1.43'
|
2468
|
+
|
2351
2469
|
Lint/UselessRuby2Keywords:
|
2352
2470
|
Description: 'Finds unnecessary uses of `ruby2_keywords`.'
|
2353
2471
|
Enabled: pending
|
@@ -2387,7 +2505,8 @@ Metrics/AbcSize:
|
|
2387
2505
|
VersionChanged: '1.5'
|
2388
2506
|
# The ABC size is a calculated magnitude, so this number can be an Integer or
|
2389
2507
|
# a Float.
|
2390
|
-
|
2508
|
+
AllowedMethods: []
|
2509
|
+
AllowedPatterns: []
|
2391
2510
|
CountRepeatedAttributes: true
|
2392
2511
|
Max: 17
|
2393
2512
|
|
@@ -2399,11 +2518,11 @@ Metrics/BlockLength:
|
|
2399
2518
|
CountComments: false # count full line comments?
|
2400
2519
|
Max: 25
|
2401
2520
|
CountAsOne: []
|
2402
|
-
|
2403
|
-
IgnoredMethods:
|
2521
|
+
AllowedMethods:
|
2404
2522
|
# By default, exclude the `#refine` method, as it tends to have larger
|
2405
2523
|
# associated blocks.
|
2406
2524
|
- refine
|
2525
|
+
AllowedPatterns: []
|
2407
2526
|
Exclude:
|
2408
2527
|
- '**/*.gemspec'
|
2409
2528
|
|
@@ -2425,6 +2544,12 @@ Metrics/ClassLength:
|
|
2425
2544
|
Max: 100
|
2426
2545
|
CountAsOne: []
|
2427
2546
|
|
2547
|
+
Metrics/CollectionLiteralLength:
|
2548
|
+
Description: 'Checks for `Array` or `Hash` literals with many entries.'
|
2549
|
+
Enabled: pending
|
2550
|
+
VersionAdded: '1.47'
|
2551
|
+
LengthThreshold: 250
|
2552
|
+
|
2428
2553
|
# Avoid complex methods.
|
2429
2554
|
Metrics/CyclomaticComplexity:
|
2430
2555
|
Description: >-
|
@@ -2433,7 +2558,8 @@ Metrics/CyclomaticComplexity:
|
|
2433
2558
|
Enabled: true
|
2434
2559
|
VersionAdded: '0.25'
|
2435
2560
|
VersionChanged: '0.81'
|
2436
|
-
|
2561
|
+
AllowedMethods: []
|
2562
|
+
AllowedPatterns: []
|
2437
2563
|
Max: 7
|
2438
2564
|
|
2439
2565
|
Metrics/MethodLength:
|
@@ -2445,8 +2571,8 @@ Metrics/MethodLength:
|
|
2445
2571
|
CountComments: false # count full line comments?
|
2446
2572
|
Max: 10
|
2447
2573
|
CountAsOne: []
|
2448
|
-
|
2449
|
-
|
2574
|
+
AllowedMethods: []
|
2575
|
+
AllowedPatterns: []
|
2450
2576
|
|
2451
2577
|
Metrics/ModuleLength:
|
2452
2578
|
Description: 'Avoid modules longer than 100 lines of code.'
|
@@ -2474,7 +2600,8 @@ Metrics/PerceivedComplexity:
|
|
2474
2600
|
Enabled: true
|
2475
2601
|
VersionAdded: '0.25'
|
2476
2602
|
VersionChanged: '0.81'
|
2477
|
-
|
2603
|
+
AllowedMethods: []
|
2604
|
+
AllowedPatterns: []
|
2478
2605
|
Max: 8
|
2479
2606
|
|
2480
2607
|
################## Migration #############################
|
@@ -2645,7 +2772,7 @@ Naming/HeredocDelimiterNaming:
|
|
2645
2772
|
Enabled: true
|
2646
2773
|
VersionAdded: '0.50'
|
2647
2774
|
ForbiddenDelimiters:
|
2648
|
-
- !ruby/regexp '/(^|\s)(EO[A-Z]{1}|END)(\s|$)/'
|
2775
|
+
- !ruby/regexp '/(^|\s)(EO[A-Z]{1}|END)(\s|$)/i'
|
2649
2776
|
|
2650
2777
|
Naming/InclusiveLanguage:
|
2651
2778
|
Description: 'Recommend the use of inclusive language instead of problematic terms.'
|
@@ -2703,7 +2830,6 @@ Naming/MethodName:
|
|
2703
2830
|
# - '\A\s*onSelectionCleared\s*'
|
2704
2831
|
#
|
2705
2832
|
AllowedPatterns: []
|
2706
|
-
IgnoredPatterns: [] # deprecated
|
2707
2833
|
|
2708
2834
|
Naming/MethodParameterName:
|
2709
2835
|
Description: >-
|
@@ -2717,10 +2843,13 @@ Naming/MethodParameterName:
|
|
2717
2843
|
AllowNamesEndingInNumbers: true
|
2718
2844
|
# Allowed names that will not register an offense
|
2719
2845
|
AllowedNames:
|
2846
|
+
- as
|
2720
2847
|
- at
|
2721
2848
|
- by
|
2849
|
+
- cc
|
2722
2850
|
- db
|
2723
2851
|
- id
|
2852
|
+
- if
|
2724
2853
|
- in
|
2725
2854
|
- io
|
2726
2855
|
- ip
|
@@ -2801,6 +2930,7 @@ Naming/VariableNumber:
|
|
2801
2930
|
- rfc822 # Time#rfc822
|
2802
2931
|
- rfc2822 # Time#rfc2822
|
2803
2932
|
- rfc3339 # DateTime.rfc3339
|
2933
|
+
- x86_64 # Allowed by default as an underscore separated CPU architecture name
|
2804
2934
|
AllowedPatterns: []
|
2805
2935
|
|
2806
2936
|
#################### Security ##############################
|
@@ -2871,6 +3001,7 @@ Style/AccessModifierDeclarations:
|
|
2871
3001
|
- inline
|
2872
3002
|
- group
|
2873
3003
|
AllowModifiersOnSymbols: true
|
3004
|
+
SafeAutoCorrect: false
|
2874
3005
|
|
2875
3006
|
Style/AccessorGrouping:
|
2876
3007
|
Description: 'Checks for grouping of accessors in `class` and `module` bodies.'
|
@@ -2924,6 +3055,12 @@ Style/ArrayCoercion:
|
|
2924
3055
|
Enabled: false
|
2925
3056
|
VersionAdded: '0.88'
|
2926
3057
|
|
3058
|
+
Style/ArrayIntersect:
|
3059
|
+
Description: 'Use `array1.intersect?(array2)` instead of `(array1 & array2).any?`.'
|
3060
|
+
Enabled: 'pending'
|
3061
|
+
Safe: false
|
3062
|
+
VersionAdded: '1.40'
|
3063
|
+
|
2927
3064
|
Style/ArrayJoin:
|
2928
3065
|
Description: 'Use Array#join instead of Array#*.'
|
2929
3066
|
StyleGuide: '#array-join'
|
@@ -3005,7 +3142,7 @@ Style/BlockDelimiters:
|
|
3005
3142
|
# This looks at the usage of a block's method to determine its type (e.g. is
|
3006
3143
|
# the result of a `map` assigned to a variable or passed to another
|
3007
3144
|
# method) but exceptions are permitted in the `ProceduralMethods`,
|
3008
|
-
# `FunctionalMethods` and `
|
3145
|
+
# `FunctionalMethods` and `AllowedMethods` sections below.
|
3009
3146
|
- semantic
|
3010
3147
|
# The `braces_for_chaining` style enforces braces around single line blocks
|
3011
3148
|
# and do..end around multi-line blocks, except for multi-line blocks whose
|
@@ -3046,7 +3183,7 @@ Style/BlockDelimiters:
|
|
3046
3183
|
- let!
|
3047
3184
|
- subject
|
3048
3185
|
- watch
|
3049
|
-
|
3186
|
+
AllowedMethods:
|
3050
3187
|
# Methods that can be either procedural or functional and cannot be
|
3051
3188
|
# categorised from their usage alone, e.g.
|
3052
3189
|
#
|
@@ -3063,6 +3200,7 @@ Style/BlockDelimiters:
|
|
3063
3200
|
- lambda
|
3064
3201
|
- proc
|
3065
3202
|
- it
|
3203
|
+
AllowedPatterns: []
|
3066
3204
|
# The AllowBracesOnProceduralOneLiners option is ignored unless the
|
3067
3205
|
# EnforcedStyle is set to `semantic`. If so:
|
3068
3206
|
#
|
@@ -3086,7 +3224,7 @@ Style/BlockDelimiters:
|
|
3086
3224
|
# collection.each do |element| puts element end
|
3087
3225
|
AllowBracesOnProceduralOneLiners: false
|
3088
3226
|
# The BracesRequiredMethods overrides all other configurations except
|
3089
|
-
#
|
3227
|
+
# AllowedMethods. It can be used to enforce that all blocks for specific
|
3090
3228
|
# methods use braces. For example, you can use this to enforce Sorbet
|
3091
3229
|
# signatures use braces even when the rest of your codebase enforces
|
3092
3230
|
# the `line_count_based` style.
|
@@ -3107,6 +3245,15 @@ Style/CaseEquality:
|
|
3107
3245
|
# # good
|
3108
3246
|
# String === "string"
|
3109
3247
|
AllowOnConstant: false
|
3248
|
+
# If `AllowOnSelfClass` option is enabled, the cop will ignore violations when the receiver of
|
3249
|
+
# the case equality operator is `self.class`.
|
3250
|
+
#
|
3251
|
+
# # bad
|
3252
|
+
# some_class === object
|
3253
|
+
#
|
3254
|
+
# # good
|
3255
|
+
# self.class === object
|
3256
|
+
AllowOnSelfClass: false
|
3110
3257
|
|
3111
3258
|
Style/CaseLikeIf:
|
3112
3259
|
Description: 'Identifies places where `if-elsif` constructions can be replaced with `case-when`.'
|
@@ -3114,6 +3261,9 @@ Style/CaseLikeIf:
|
|
3114
3261
|
Enabled: true
|
3115
3262
|
Safe: false
|
3116
3263
|
VersionAdded: '0.88'
|
3264
|
+
VersionChanged: '1.48'
|
3265
|
+
# `MinBranchesCount` defines the number of branches `if` needs to have to trigger this cop.
|
3266
|
+
MinBranchesCount: 3
|
3117
3267
|
|
3118
3268
|
Style/CharacterLiteral:
|
3119
3269
|
Description: 'Checks for uses of character literals.'
|
@@ -3166,10 +3316,11 @@ Style/ClassEqualityComparison:
|
|
3166
3316
|
StyleGuide: '#instance-of-vs-class-comparison'
|
3167
3317
|
Enabled: true
|
3168
3318
|
VersionAdded: '0.93'
|
3169
|
-
|
3319
|
+
AllowedMethods:
|
3170
3320
|
- ==
|
3171
3321
|
- equal?
|
3172
3322
|
- eql?
|
3323
|
+
AllowedPatterns: []
|
3173
3324
|
|
3174
3325
|
Style/ClassMethods:
|
3175
3326
|
Description: 'Use self when defining module/class methods.'
|
@@ -3290,6 +3441,17 @@ Style/CommentedKeyword:
|
|
3290
3441
|
VersionAdded: '0.51'
|
3291
3442
|
VersionChanged: '1.19'
|
3292
3443
|
|
3444
|
+
Style/ComparableClamp:
|
3445
|
+
Description: 'Enforces the use of `Comparable#clamp` instead of comparison by minimum and maximum.'
|
3446
|
+
Enabled: pending
|
3447
|
+
VersionAdded: '1.44'
|
3448
|
+
|
3449
|
+
Style/ConcatArrayLiterals:
|
3450
|
+
Description: 'Enforces the use of `Array#push(item)` instead of `Array#concat([item])` to avoid redundant array literals.'
|
3451
|
+
Enabled: pending
|
3452
|
+
Safe: false
|
3453
|
+
VersionAdded: '1.41'
|
3454
|
+
|
3293
3455
|
Style/ConditionalAssignment:
|
3294
3456
|
Description: >-
|
3295
3457
|
Use the return value of `if` and `case` statements for
|
@@ -3347,7 +3509,7 @@ Style/Copyright:
|
|
3347
3509
|
|
3348
3510
|
Style/DateTime:
|
3349
3511
|
Description: 'Use Time over DateTime.'
|
3350
|
-
StyleGuide: '#date
|
3512
|
+
StyleGuide: '#date-time'
|
3351
3513
|
Enabled: false
|
3352
3514
|
VersionAdded: '0.51'
|
3353
3515
|
VersionChanged: '0.92'
|
@@ -3368,6 +3530,12 @@ Style/Dir:
|
|
3368
3530
|
Enabled: true
|
3369
3531
|
VersionAdded: '0.50'
|
3370
3532
|
|
3533
|
+
Style/DirEmpty:
|
3534
|
+
Description: >-
|
3535
|
+
Prefer to use `Dir.empty?('path/to/dir')` when checking if a directory is empty.
|
3536
|
+
Enabled: pending
|
3537
|
+
VersionAdded: '1.48'
|
3538
|
+
|
3371
3539
|
Style/DisableCopsWithinSourceCodeDirective:
|
3372
3540
|
Description: >-
|
3373
3541
|
Forbids disabling/enabling cops within source code.
|
@@ -3456,6 +3624,12 @@ Style/EmptyElse:
|
|
3456
3624
|
- empty
|
3457
3625
|
- nil
|
3458
3626
|
- both
|
3627
|
+
AllowComments: false
|
3628
|
+
|
3629
|
+
Style/EmptyHeredoc:
|
3630
|
+
Description: 'Checks for using empty heredoc to reduce redundancy.'
|
3631
|
+
Enabled: pending
|
3632
|
+
VersionAdded: '1.32'
|
3459
3633
|
|
3460
3634
|
Style/EmptyLambdaParameter:
|
3461
3635
|
Description: 'Omit parens for empty lambda parameters.'
|
@@ -3557,6 +3731,14 @@ Style/FetchEnvVar:
|
|
3557
3731
|
# Environment variables to be excluded from the inspection.
|
3558
3732
|
AllowedVars: []
|
3559
3733
|
|
3734
|
+
Style/FileEmpty:
|
3735
|
+
Description: >-
|
3736
|
+
Prefer to use `File.empty?('path/to/file')` when checking if a file is empty.
|
3737
|
+
Enabled: pending
|
3738
|
+
Safe: false
|
3739
|
+
SafeAutoCorrect: false
|
3740
|
+
VersionAdded: '1.48'
|
3741
|
+
|
3560
3742
|
Style/FileRead:
|
3561
3743
|
Description: 'Favor `File.(bin)read` convenience methods.'
|
3562
3744
|
StyleGuide: '#file-read'
|
@@ -3625,7 +3807,8 @@ Style/FormatStringToken:
|
|
3625
3807
|
MaxUnannotatedPlaceholdersAllowed: 1
|
3626
3808
|
VersionAdded: '0.49'
|
3627
3809
|
VersionChanged: '1.0'
|
3628
|
-
|
3810
|
+
AllowedMethods: []
|
3811
|
+
AllowedPatterns: []
|
3629
3812
|
|
3630
3813
|
Style/FrozenStringLiteralComment:
|
3631
3814
|
Description: >-
|
@@ -3670,7 +3853,7 @@ Style/GuardClause:
|
|
3670
3853
|
StyleGuide: '#no-nested-conditionals'
|
3671
3854
|
Enabled: true
|
3672
3855
|
VersionAdded: '0.20'
|
3673
|
-
VersionChanged: '1.
|
3856
|
+
VersionChanged: '1.31'
|
3674
3857
|
# `MinBodyLength` defines the number of lines of the a body of an `if` or `unless`
|
3675
3858
|
# needs to have to trigger this cop
|
3676
3859
|
MinBodyLength: 1
|
@@ -3703,14 +3886,17 @@ Style/HashEachMethods:
|
|
3703
3886
|
Safe: false
|
3704
3887
|
VersionAdded: '0.80'
|
3705
3888
|
VersionChanged: '1.16'
|
3706
|
-
AllowedReceivers:
|
3889
|
+
AllowedReceivers:
|
3890
|
+
- Thread.current
|
3707
3891
|
|
3708
3892
|
Style/HashExcept:
|
3709
3893
|
Description: >-
|
3710
3894
|
Checks for usages of `Hash#reject`, `Hash#select`, and `Hash#filter` methods
|
3711
3895
|
that can be replaced with `Hash#except` method.
|
3712
3896
|
Enabled: pending
|
3897
|
+
Safe: false
|
3713
3898
|
VersionAdded: '1.7'
|
3899
|
+
VersionChanged: '1.39'
|
3714
3900
|
|
3715
3901
|
Style/HashLikeCase:
|
3716
3902
|
Description: >-
|
@@ -3749,6 +3935,8 @@ Style/HashSyntax:
|
|
3749
3935
|
- never
|
3750
3936
|
# accepts both shorthand and explicit use of hash literal value.
|
3751
3937
|
- either
|
3938
|
+
# forces use of the 3.1 syntax only if all values can be omitted in the hash.
|
3939
|
+
- consistent
|
3752
3940
|
# Force hashes that have a symbol value to use hash rockets
|
3753
3941
|
UseHashRocketsWithSymbolValues: false
|
3754
3942
|
# Do not suggest { a?: 1 } over { :a? => 1 } in ruby19 style
|
@@ -3861,16 +4049,41 @@ Style/InverseMethods:
|
|
3861
4049
|
:=~: :!~
|
3862
4050
|
:<: :>=
|
3863
4051
|
:>: :<=
|
3864
|
-
# `ActiveSupport` defines some common inverse methods. They are listed below,
|
3865
|
-
# and not enabled by default.
|
3866
|
-
# :present?: :blank?,
|
3867
|
-
# :include?: :exclude?
|
3868
4052
|
# `InverseBlocks` are methods that are inverted by inverting the return
|
3869
4053
|
# of the block that is passed to the method
|
3870
4054
|
InverseBlocks:
|
3871
4055
|
:select: :reject
|
3872
4056
|
:select!: :reject!
|
3873
4057
|
|
4058
|
+
Style/InvertibleUnlessCondition:
|
4059
|
+
Description: 'Favor `if` with inverted condition over `unless`.'
|
4060
|
+
Enabled: false
|
4061
|
+
VersionAdded: '1.44'
|
4062
|
+
# `InverseMethods` are methods that can be inverted in a `unless` condition.
|
4063
|
+
# The relationship of inverse methods needs to be defined in both directions.
|
4064
|
+
# Keys and values both need to be defined as symbols.
|
4065
|
+
InverseMethods:
|
4066
|
+
:!=: :==
|
4067
|
+
:>: :<=
|
4068
|
+
:<=: :>
|
4069
|
+
:<: :>=
|
4070
|
+
:>=: :<
|
4071
|
+
:!~: :=~
|
4072
|
+
:zero?: :nonzero?
|
4073
|
+
:nonzero?: :zero?
|
4074
|
+
:any?: :none?
|
4075
|
+
:none?: :any?
|
4076
|
+
:even?: :odd?
|
4077
|
+
:odd?: :even?
|
4078
|
+
# `ActiveSupport` defines some common inverse methods. They are listed below,
|
4079
|
+
# and not enabled by default.
|
4080
|
+
# :present?: :blank?
|
4081
|
+
# :blank?: :present?
|
4082
|
+
# :include?: :exclude?
|
4083
|
+
# :exclude?: :include?
|
4084
|
+
# :one?: :many?
|
4085
|
+
# :many?: :one?
|
4086
|
+
|
3874
4087
|
Style/IpAddresses:
|
3875
4088
|
Description: "Don't include literal IP addresses in code."
|
3876
4089
|
Enabled: false
|
@@ -3925,12 +4138,43 @@ Style/LineEndConcatenation:
|
|
3925
4138
|
VersionAdded: '0.18'
|
3926
4139
|
VersionChanged: '0.64'
|
3927
4140
|
|
4141
|
+
Style/MagicCommentFormat:
|
4142
|
+
Description: 'Use a consistent style for magic comments.'
|
4143
|
+
Enabled: pending
|
4144
|
+
VersionAdded: '1.35'
|
4145
|
+
EnforcedStyle: snake_case
|
4146
|
+
SupportedStyles:
|
4147
|
+
# `snake` will enforce the magic comment is written
|
4148
|
+
# in snake case (words separated by underscores).
|
4149
|
+
# Eg: froze_string_literal: true
|
4150
|
+
- snake_case
|
4151
|
+
# `kebab` will enforce the magic comment is written
|
4152
|
+
# in kebab case (words separated by hyphens).
|
4153
|
+
# Eg: froze-string-literal: true
|
4154
|
+
- kebab_case
|
4155
|
+
DirectiveCapitalization: lowercase
|
4156
|
+
ValueCapitalization: ~
|
4157
|
+
SupportedCapitalizations:
|
4158
|
+
- lowercase
|
4159
|
+
- uppercase
|
4160
|
+
|
4161
|
+
Style/MapCompactWithConditionalBlock:
|
4162
|
+
Description: 'Prefer `select` or `reject` over `map { ... }.compact`.'
|
4163
|
+
Enabled: pending
|
4164
|
+
VersionAdded: '1.30'
|
4165
|
+
|
3928
4166
|
Style/MapToHash:
|
3929
4167
|
Description: 'Prefer `to_h` with a block over `map.to_h`.'
|
3930
4168
|
Enabled: pending
|
3931
4169
|
VersionAdded: '1.24'
|
3932
4170
|
Safe: false
|
3933
4171
|
|
4172
|
+
Style/MapToSet:
|
4173
|
+
Description: 'Prefer `to_set` with a block over `map.to_set`.'
|
4174
|
+
Enabled: pending
|
4175
|
+
Safe: false
|
4176
|
+
VersionAdded: '1.42'
|
4177
|
+
|
3934
4178
|
Style/MethodCallWithArgsParentheses:
|
3935
4179
|
Description: 'Use parentheses for method calls with arguments.'
|
3936
4180
|
StyleGuide: '#method-invocation-parens'
|
@@ -3938,9 +4182,8 @@ Style/MethodCallWithArgsParentheses:
|
|
3938
4182
|
VersionAdded: '0.47'
|
3939
4183
|
VersionChanged: '1.7'
|
3940
4184
|
IgnoreMacros: true
|
3941
|
-
|
4185
|
+
AllowedMethods: []
|
3942
4186
|
AllowedPatterns: []
|
3943
|
-
IgnoredPatterns: [] # deprecated
|
3944
4187
|
IncludedMacros: []
|
3945
4188
|
AllowParenthesesInMultilineCall: false
|
3946
4189
|
AllowParenthesesInChaining: false
|
@@ -3955,7 +4198,8 @@ Style/MethodCallWithoutArgsParentheses:
|
|
3955
4198
|
Description: 'Do not use parentheses for method calls with no arguments.'
|
3956
4199
|
StyleGuide: '#method-invocation-parens'
|
3957
4200
|
Enabled: true
|
3958
|
-
|
4201
|
+
AllowedMethods: []
|
4202
|
+
AllowedPatterns: []
|
3959
4203
|
VersionAdded: '0.47'
|
3960
4204
|
VersionChanged: '0.55'
|
3961
4205
|
|
@@ -3986,6 +4230,12 @@ Style/MinMax:
|
|
3986
4230
|
Enabled: true
|
3987
4231
|
VersionAdded: '0.50'
|
3988
4232
|
|
4233
|
+
Style/MinMaxComparison:
|
4234
|
+
Description: 'Enforces the use of `max` or `min` instead of comparison for greater or less.'
|
4235
|
+
Enabled: pending
|
4236
|
+
Safe: false
|
4237
|
+
VersionAdded: '1.42'
|
4238
|
+
|
3989
4239
|
Style/MissingElse:
|
3990
4240
|
Description: >-
|
3991
4241
|
Require if/case expressions to have an else branches.
|
@@ -4307,6 +4557,7 @@ Style/NumericLiterals:
|
|
4307
4557
|
Strict: false
|
4308
4558
|
# You can specify allowed numbers. (e.g. port number 3000, 8080, and etc)
|
4309
4559
|
AllowedNumbers: []
|
4560
|
+
AllowedPatterns: []
|
4310
4561
|
|
4311
4562
|
Style/NumericPredicate:
|
4312
4563
|
Description: >-
|
@@ -4325,7 +4576,8 @@ Style/NumericPredicate:
|
|
4325
4576
|
SupportedStyles:
|
4326
4577
|
- predicate
|
4327
4578
|
- comparison
|
4328
|
-
|
4579
|
+
AllowedMethods: []
|
4580
|
+
AllowedPatterns: []
|
4329
4581
|
# Exclude RSpec specs because assertions like `expect(1).to be > 0` cause
|
4330
4582
|
# false positives.
|
4331
4583
|
Exclude:
|
@@ -4364,6 +4616,12 @@ Style/OpenStructUse:
|
|
4364
4616
|
Enabled: pending
|
4365
4617
|
VersionAdded: '1.23'
|
4366
4618
|
|
4619
|
+
Style/OperatorMethodCall:
|
4620
|
+
Description: 'Checks for redundant dot before operator method call.'
|
4621
|
+
StyleGuide: '#operator-method-call'
|
4622
|
+
Enabled: pending
|
4623
|
+
VersionAdded: '1.37'
|
4624
|
+
|
4367
4625
|
Style/OptionHash:
|
4368
4626
|
Description: "Don't use option hashes when you can use keyword arguments."
|
4369
4627
|
Enabled: false
|
@@ -4509,10 +4767,12 @@ Style/RedundantArgument:
|
|
4509
4767
|
Enabled: pending
|
4510
4768
|
Safe: false
|
4511
4769
|
VersionAdded: '1.4'
|
4512
|
-
VersionChanged: '1.
|
4770
|
+
VersionChanged: '1.40'
|
4513
4771
|
Methods:
|
4514
4772
|
# Array#join
|
4515
4773
|
join: ''
|
4774
|
+
# Array#sum
|
4775
|
+
sum: 0
|
4516
4776
|
# String#split
|
4517
4777
|
split: ' '
|
4518
4778
|
# String#chomp
|
@@ -4547,6 +4807,22 @@ Style/RedundantConditional:
|
|
4547
4807
|
Enabled: true
|
4548
4808
|
VersionAdded: '0.50'
|
4549
4809
|
|
4810
|
+
Style/RedundantConstantBase:
|
4811
|
+
Description: Avoid redundant `::` prefix on constant.
|
4812
|
+
Enabled: pending
|
4813
|
+
VersionAdded: '1.40'
|
4814
|
+
|
4815
|
+
Style/RedundantDoubleSplatHashBraces:
|
4816
|
+
Description: 'Checks for redundant uses of double splat hash braces.'
|
4817
|
+
Enabled: pending
|
4818
|
+
VersionAdded: '1.41'
|
4819
|
+
|
4820
|
+
Style/RedundantEach:
|
4821
|
+
Description: 'Checks for redundant `each`.'
|
4822
|
+
Enabled: pending
|
4823
|
+
Safe: false
|
4824
|
+
VersionAdded: '1.38'
|
4825
|
+
|
4550
4826
|
Style/RedundantException:
|
4551
4827
|
Description: "Checks for an obsolete RuntimeException argument in raise/fail."
|
4552
4828
|
StyleGuide: '#no-explicit-runtimeerror'
|
@@ -4581,6 +4857,11 @@ Style/RedundantFreeze:
|
|
4581
4857
|
VersionAdded: '0.34'
|
4582
4858
|
VersionChanged: '0.66'
|
4583
4859
|
|
4860
|
+
Style/RedundantHeredocDelimiterQuotes:
|
4861
|
+
Description: 'Checks for redundant heredoc delimiter quotes.'
|
4862
|
+
Enabled: pending
|
4863
|
+
VersionAdded: '1.45'
|
4864
|
+
|
4584
4865
|
Style/RedundantInitialize:
|
4585
4866
|
Description: 'Checks for redundant `initialize` methods.'
|
4586
4867
|
Enabled: pending
|
@@ -4592,7 +4873,9 @@ Style/RedundantInitialize:
|
|
4592
4873
|
Style/RedundantInterpolation:
|
4593
4874
|
Description: 'Checks for strings that are just an interpolated expression.'
|
4594
4875
|
Enabled: true
|
4876
|
+
SafeAutoCorrect: false
|
4595
4877
|
VersionAdded: '0.76'
|
4878
|
+
VersionChanged: '1.30'
|
4596
4879
|
|
4597
4880
|
Style/RedundantParentheses:
|
4598
4881
|
Description: "Checks for parentheses that seem not to serve any purpose."
|
@@ -4656,6 +4939,11 @@ Style/RedundantSortBy:
|
|
4656
4939
|
Enabled: true
|
4657
4940
|
VersionAdded: '0.36'
|
4658
4941
|
|
4942
|
+
Style/RedundantStringEscape:
|
4943
|
+
Description: 'Checks for redundant escapes in string literals.'
|
4944
|
+
Enabled: pending
|
4945
|
+
VersionAdded: '1.37'
|
4946
|
+
|
4659
4947
|
Style/RegexpLiteral:
|
4660
4948
|
Description: 'Use / or %r around regular expressions.'
|
4661
4949
|
StyleGuide: '#percent-r'
|
@@ -4674,6 +4962,12 @@ Style/RegexpLiteral:
|
|
4674
4962
|
# are found in the regexp string.
|
4675
4963
|
AllowInnerSlashes: false
|
4676
4964
|
|
4965
|
+
Style/RequireOrder:
|
4966
|
+
Description: Sort `require` and `require_relative` in alphabetical order.
|
4967
|
+
Enabled: false
|
4968
|
+
SafeAutoCorrect: false
|
4969
|
+
VersionAdded: '1.40'
|
4970
|
+
|
4677
4971
|
Style/RescueModifier:
|
4678
4972
|
Description: 'Avoid using rescue in its modifier form.'
|
4679
4973
|
StyleGuide: '#no-rescue-modifiers'
|
@@ -4706,7 +5000,7 @@ Style/SafeNavigation:
|
|
4706
5000
|
Transforms usages of a method call safeguarded by
|
4707
5001
|
a check for the existence of the object to
|
4708
5002
|
safe navigation (`&.`).
|
4709
|
-
|
5003
|
+
Autocorrection is unsafe as it assumes the object will
|
4710
5004
|
be `nil` or truthy, but never `false`.
|
4711
5005
|
Enabled: true
|
4712
5006
|
VersionAdded: '0.43'
|
@@ -4958,13 +5252,13 @@ Style/SymbolProc:
|
|
4958
5252
|
Enabled: true
|
4959
5253
|
Safe: false
|
4960
5254
|
VersionAdded: '0.26'
|
4961
|
-
VersionChanged: '1.
|
5255
|
+
VersionChanged: '1.40'
|
4962
5256
|
AllowMethodsWithArguments: false
|
4963
|
-
# A list of method names to be
|
5257
|
+
# A list of method names to be always allowed by the check.
|
4964
5258
|
# The names should be fairly unique, otherwise you'll end up ignoring lots of code.
|
4965
|
-
|
4966
|
-
- respond_to
|
5259
|
+
AllowedMethods:
|
4967
5260
|
- define_method
|
5261
|
+
AllowedPatterns: []
|
4968
5262
|
AllowComments: false
|
4969
5263
|
|
4970
5264
|
Style/TernaryParentheses:
|
@@ -5203,6 +5497,19 @@ Style/YodaCondition:
|
|
5203
5497
|
VersionAdded: '0.49'
|
5204
5498
|
VersionChanged: '0.75'
|
5205
5499
|
|
5500
|
+
Style/YodaExpression:
|
5501
|
+
Description: 'Forbid the use of yoda expressions.'
|
5502
|
+
Enabled: false
|
5503
|
+
Safe: false
|
5504
|
+
VersionAdded: '1.42'
|
5505
|
+
VersionChanged: '1.43'
|
5506
|
+
SupportedOperators:
|
5507
|
+
- '*'
|
5508
|
+
- '+'
|
5509
|
+
- '&'
|
5510
|
+
- '|'
|
5511
|
+
- '^'
|
5512
|
+
|
5206
5513
|
Style/ZeroLengthPredicate:
|
5207
5514
|
Description: 'Use #empty? when testing for objects of length 0.'
|
5208
5515
|
Enabled: true
|