rubocop 1.22.0 → 1.45.1
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 +8 -7
- data/config/default.yml +534 -82
- data/config/obsoletion.yml +35 -2
- 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} +21 -6
- data/lib/rubocop/cli/command/execute_runner.rb +8 -8
- data/lib/rubocop/cli/command/init_dotfile.rb +2 -2
- data/lib/rubocop/cli/command/show_cops.rb +1 -1
- data/lib/rubocop/cli/command/show_docs_url.rb +48 -0
- data/lib/rubocop/cli/command/suggest_extensions.rb +62 -17
- data/lib/rubocop/cli.rb +59 -10
- data/lib/rubocop/comment_config.rb +41 -1
- data/lib/rubocop/config.rb +45 -17
- data/lib/rubocop/config_finder.rb +68 -0
- data/lib/rubocop/config_loader.rb +42 -62
- data/lib/rubocop/config_loader_resolver.rb +12 -13
- data/lib/rubocop/config_obsoletion/changed_parameter.rb +5 -0
- data/lib/rubocop/config_obsoletion/extracted_cop.rb +3 -1
- 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 +8 -2
- data/lib/rubocop/cop/badge.rb +15 -4
- data/lib/rubocop/cop/base.rb +114 -82
- data/lib/rubocop/cop/bundler/duplicated_gem.rb +4 -8
- data/lib/rubocop/cop/bundler/gem_comment.rb +3 -3
- 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 +32 -12
- data/lib/rubocop/cop/correctors/alignment_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/condition_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +2 -2
- data/lib/rubocop/cop/correctors/empty_line_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +4 -2
- data/lib/rubocop/cop/correctors/if_then_corrector.rb +55 -0
- data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/line_break_corrector.rb +7 -1
- data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +25 -9
- data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +2 -7
- 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/documentation.rb +19 -2
- data/lib/rubocop/cop/gemspec/dependency_version.rb +154 -0
- 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 +6 -22
- data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +1 -1
- data/lib/rubocop/cop/gemspec/require_mfa.rb +145 -0
- data/lib/rubocop/cop/gemspec/required_ruby_version.rb +40 -26
- data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +4 -11
- data/lib/rubocop/cop/generator/require_file_injector.rb +2 -2
- data/lib/rubocop/cop/generator.rb +13 -14
- 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_line_equality_comparison.rb +60 -0
- data/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +80 -0
- data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +1 -5
- data/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
- data/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +46 -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_method_dispatch_node.rb +47 -0
- data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +62 -0
- data/lib/rubocop/cop/internal_affairs/undefined_config.rb +3 -1
- data/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +60 -0
- data/lib/rubocop/cop/internal_affairs.rb +11 -0
- data/lib/rubocop/cop/layout/argument_alignment.rb +57 -9
- data/lib/rubocop/cop/layout/array_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/assignment_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/begin_end_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/block_alignment.rb +20 -16
- data/lib/rubocop/cop/layout/block_end_newline.rb +42 -6
- data/lib/rubocop/cop/layout/case_indentation.rb +17 -1
- data/lib/rubocop/cop/layout/class_structure.rb +31 -24
- data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +3 -7
- data/lib/rubocop/cop/layout/comment_indentation.rb +36 -5
- 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 +15 -5
- data/lib/rubocop/cop/layout/else_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/empty_comment.rb +3 -3
- 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 +23 -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 +12 -5
- 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 +2 -3
- 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 +36 -30
- data/lib/rubocop/cop/layout/first_array_element_indentation.rb +22 -15
- data/lib/rubocop/cop/layout/first_array_element_line_break.rb +39 -3
- data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +53 -14
- 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 +2 -2
- data/lib/rubocop/cop/layout/hash_alignment.rb +10 -3
- data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2 -2
- data/lib/rubocop/cop/layout/heredoc_indentation.rb +7 -10
- 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 +18 -12
- data/lib/rubocop/cop/layout/initial_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/leading_comment_space.rb +1 -1
- data/lib/rubocop/cop/layout/leading_empty_lines.rb +1 -1
- data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +138 -0
- data/lib/rubocop/cop/layout/line_continuation_spacing.rb +136 -0
- data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/line_length.rb +14 -7
- 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 +3 -3
- data/lib/rubocop/cop/layout/multiline_block_layout.rb +7 -5
- 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 +23 -6
- 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 +9 -10
- data/lib/rubocop/cop/layout/redundant_line_break.rb +7 -8
- 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_colon.rb +1 -1
- data/lib/rubocop/cop/layout/space_after_not.rb +1 -1
- data/lib/rubocop/cop/layout/space_around_block_parameters.rb +3 -3
- 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_brackets.rb +7 -0
- data/lib/rubocop/cop/layout/space_before_comment.rb +2 -2
- data/lib/rubocop/cop/layout/space_before_first_arg.rb +5 -1
- data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +12 -6
- 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_parens.rb +0 -4
- data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +34 -0
- data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +11 -7
- data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +6 -5
- data/lib/rubocop/cop/layout/trailing_empty_lines.rb +10 -10
- 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 -7
- data/lib/rubocop/cop/lint/ambiguous_operator.rb +11 -7
- data/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +1 -1
- data/lib/rubocop/cop/lint/ambiguous_range.rb +8 -8
- data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +6 -2
- 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_definition_in_block.rb +1 -1
- data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
- data/lib/rubocop/cop/lint/constant_resolution.rb +4 -0
- data/lib/rubocop/cop/lint/debugger.rb +25 -32
- data/lib/rubocop/cop/lint/deprecated_class_methods.rb +69 -101
- data/lib/rubocop/cop/lint/deprecated_constants.rb +12 -4
- data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +6 -0
- 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 +48 -18
- data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +26 -7
- data/lib/rubocop/cop/lint/duplicate_require.rb +11 -2
- data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +1 -1
- data/lib/rubocop/cop/lint/each_with_object_argument.rb +2 -2
- data/lib/rubocop/cop/lint/else_layout.rb +6 -10
- data/lib/rubocop/cop/lint/empty_block.rb +3 -7
- data/lib/rubocop/cop/lint/empty_class.rb +4 -2
- data/lib/rubocop/cop/lint/empty_conditional_body.rb +112 -4
- 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 +4 -2
- data/lib/rubocop/cop/lint/empty_interpolation.rb +1 -1
- data/lib/rubocop/cop/lint/empty_when.rb +4 -2
- data/lib/rubocop/cop/lint/ensure_return.rb +1 -1
- data/lib/rubocop/cop/lint/erb_new_arguments.rb +10 -10
- 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 +17 -5
- data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +1 -1
- data/lib/rubocop/cop/lint/inherit_exception.rb +19 -28
- data/lib/rubocop/cop/lint/interpolation_check.rb +6 -5
- data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +10 -3
- data/lib/rubocop/cop/lint/literal_as_condition.rb +6 -1
- data/lib/rubocop/cop/lint/literal_in_interpolation.rb +5 -1
- data/lib/rubocop/cop/lint/loop.rb +2 -2
- data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +19 -4
- data/lib/rubocop/cop/lint/missing_super.rb +1 -1
- data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +1 -0
- data/lib/rubocop/cop/lint/nested_method_definition.rb +58 -6
- 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 +17 -5
- data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +1 -1
- data/lib/rubocop/cop/lint/number_conversion.rb +37 -12
- data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +2 -3
- data/lib/rubocop/cop/lint/ordered_magic_comments.rb +4 -5
- data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +20 -1
- data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +17 -8
- 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/raise_exception.rb +2 -2
- data/lib/rubocop/cop/lint/rand_one.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +44 -10
- data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +3 -3
- data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +12 -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 +1 -1
- data/lib/rubocop/cop/lint/redundant_string_coercion.rb +1 -1
- 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 +51 -0
- 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/require_relative_self_path.rb +1 -0
- data/lib/rubocop/cop/lint/rescue_exception.rb +1 -1
- data/lib/rubocop/cop/lint/return_in_void_context.rb +6 -18
- data/lib/rubocop/cop/lint/safe_navigation_chain.rb +44 -8
- data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +1 -1
- data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +1 -1
- data/lib/rubocop/cop/lint/script_permission.rb +1 -1
- 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 +16 -11
- data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +36 -1
- 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 +4 -3
- data/lib/rubocop/cop/lint/syntax.rb +2 -3
- data/lib/rubocop/cop/lint/to_enum_arguments.rb +1 -1
- 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 +13 -7
- data/lib/rubocop/cop/lint/unused_block_argument.rb +1 -1
- data/lib/rubocop/cop/lint/unused_method_argument.rb +8 -3
- 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 +15 -10
- data/lib/rubocop/cop/lint/useless_assignment.rb +1 -1
- data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +2 -3
- data/lib/rubocop/cop/lint/useless_method_definition.rb +4 -4
- data/lib/rubocop/cop/lint/useless_rescue.rb +85 -0
- data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +127 -0
- data/lib/rubocop/cop/lint/useless_setter_call.rb +2 -2
- data/lib/rubocop/cop/lint/useless_times.rb +15 -11
- 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 +18 -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/cyclomatic_complexity.rb +2 -11
- data/lib/rubocop/cop/metrics/method_length.rb +19 -12
- data/lib/rubocop/cop/metrics/module_length.rb +11 -6
- data/lib/rubocop/cop/metrics/parameter_lists.rb +33 -3
- data/lib/rubocop/cop/metrics/perceived_complexity.rb +2 -2
- data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +5 -9
- data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +29 -7
- data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.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 +56 -0
- data/lib/rubocop/cop/mixin/annotation_comment.rb +13 -6
- data/lib/rubocop/cop/mixin/check_line_breakable.rb +5 -1
- data/lib/rubocop/cop/mixin/comments_help.rb +42 -2
- 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/duplication.rb +1 -1
- data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -2
- data/lib/rubocop/cop/mixin/enforce_superclass.rb +7 -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/gemspec_help.rb +30 -0
- data/lib/rubocop/cop/mixin/hash_alignment_styles.rb +4 -3
- data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +221 -0
- data/lib/rubocop/cop/mixin/hash_transform_method.rb +13 -9
- data/lib/rubocop/cop/mixin/line_length_help.rb +28 -8
- data/lib/rubocop/cop/mixin/method_complexity.rb +13 -16
- data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +35 -13
- data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +5 -3
- data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +4 -3
- data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.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/preferred_delimiters.rb +2 -2
- data/lib/rubocop/cop/mixin/range_help.rb +33 -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/space_after_punctuation.rb +1 -1
- data/lib/rubocop/cop/mixin/space_before_punctuation.rb +1 -1
- data/lib/rubocop/cop/mixin/statement_modifier.rb +18 -3
- data/lib/rubocop/cop/mixin/string_help.rb +1 -1
- data/lib/rubocop/cop/mixin/surrounding_space.rb +17 -13
- data/lib/rubocop/cop/mixin/trailing_body.rb +1 -1
- 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 +125 -0
- 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 +39 -6
- data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +1 -1
- data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +1 -1
- data/lib/rubocop/cop/naming/inclusive_language.rb +8 -4
- data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +1 -1
- data/lib/rubocop/cop/naming/method_name.rb +6 -6
- data/lib/rubocop/cop/naming/method_parameter_name.rb +2 -2
- data/lib/rubocop/cop/naming/predicate_name.rb +32 -3
- data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +1 -1
- data/lib/rubocop/cop/naming/variable_name.rb +10 -1
- data/lib/rubocop/cop/naming/variable_number.rb +28 -18
- data/lib/rubocop/cop/offense.rb +1 -1
- data/lib/rubocop/cop/registry.rb +70 -44
- data/lib/rubocop/cop/security/compound_hash.rb +106 -0
- data/lib/rubocop/cop/security/eval.rb +1 -1
- data/lib/rubocop/cop/security/json_load.rb +2 -2
- data/lib/rubocop/cop/security/marshal_load.rb +1 -1
- data/lib/rubocop/cop/security/open.rb +11 -1
- data/lib/rubocop/cop/security/yaml_load.rb +11 -5
- data/lib/rubocop/cop/style/access_modifier_declarations.rb +92 -3
- data/lib/rubocop/cop/style/accessor_grouping.rb +11 -7
- data/lib/rubocop/cop/style/alias.rb +13 -5
- data/lib/rubocop/cop/style/and_or.rb +12 -12
- data/lib/rubocop/cop/style/arguments_forwarding.rb +4 -3
- 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 +1 -1
- 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/macro.rb +1 -1
- data/lib/rubocop/cop/style/bisected_attr_accessor.rb +1 -1
- data/lib/rubocop/cop/style/block_comments.rb +2 -2
- data/lib/rubocop/cop/style/block_delimiters.rb +43 -11
- data/lib/rubocop/cop/style/case_equality.rb +41 -11
- data/lib/rubocop/cop/style/case_like_if.rb +2 -2
- data/lib/rubocop/cop/style/character_literal.rb +10 -3
- 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 +45 -18
- 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 +6 -4
- data/lib/rubocop/cop/style/command_literal.rb +2 -2
- data/lib/rubocop/cop/style/comment_annotation.rb +1 -1
- data/lib/rubocop/cop/style/commented_keyword.rb +9 -7
- data/lib/rubocop/cop/style/comparable_clamp.rb +125 -0
- data/lib/rubocop/cop/style/concat_array_literals.rb +86 -0
- data/lib/rubocop/cop/style/conditional_assignment.rb +2 -7
- data/lib/rubocop/cop/style/constant_visibility.rb +1 -1
- data/lib/rubocop/cop/style/date_time.rb +2 -2
- data/lib/rubocop/cop/style/def_with_parentheses.rb +17 -12
- data/lib/rubocop/cop/style/dir.rb +4 -1
- data/lib/rubocop/cop/style/documentation.rb +13 -7
- data/lib/rubocop/cop/style/documentation_method.rb +7 -1
- data/lib/rubocop/cop/style/double_negation.rb +62 -3
- data/lib/rubocop/cop/style/each_for_simple_loop.rb +42 -7
- 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_case_condition.rb +13 -4
- 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 +2 -2
- data/lib/rubocop/cop/style/empty_literal.rb +2 -2
- data/lib/rubocop/cop/style/empty_method.rb +19 -4
- 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 +56 -0
- data/lib/rubocop/cop/style/eval_with_location.rb +1 -1
- 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 +6 -2
- data/lib/rubocop/cop/style/exponential_notation.rb +1 -1
- data/lib/rubocop/cop/style/fetch_env_var.rb +132 -0
- data/lib/rubocop/cop/style/file_read.rb +112 -0
- data/lib/rubocop/cop/style/file_write.rb +136 -0
- data/lib/rubocop/cop/style/float_division.rb +1 -1
- data/lib/rubocop/cop/style/for.rb +7 -1
- data/lib/rubocop/cop/style/format_string.rb +1 -1
- data/lib/rubocop/cop/style/format_string_token.rb +74 -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 +159 -25
- data/lib/rubocop/cop/style/hash_as_last_array_item.rb +2 -1
- data/lib/rubocop/cop/style/hash_conversion.rb +3 -2
- 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 +1 -1
- data/lib/rubocop/cop/style/hash_syntax.rb +60 -3
- data/lib/rubocop/cop/style/hash_transform_keys.rb +12 -7
- data/lib/rubocop/cop/style/hash_transform_values.rb +10 -7
- data/lib/rubocop/cop/style/identical_conditional_branches.rb +19 -4
- data/lib/rubocop/cop/style/if_inside_else.rb +15 -0
- data/lib/rubocop/cop/style/if_unless_modifier.rb +6 -5
- data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +30 -5
- 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 +12 -8
- 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 +13 -21
- data/lib/rubocop/cop/style/line_end_concatenation.rb +7 -4
- 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 +68 -0
- data/lib/rubocop/cop/style/map_to_set.rb +61 -0
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +57 -17
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +6 -2
- data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +15 -13
- 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 +25 -14
- data/lib/rubocop/cop/style/min_max.rb +1 -1
- 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 +2 -2
- 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 +4 -6
- data/lib/rubocop/cop/style/multiline_memoization.rb +3 -3
- data/lib/rubocop/cop/style/multiline_method_signature.rb +2 -2
- data/lib/rubocop/cop/style/multiline_ternary_operator.rb +52 -11
- data/lib/rubocop/cop/style/multiline_when_then.rb +3 -5
- 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 +9 -7
- data/lib/rubocop/cop/style/nested_file_dirname.rb +66 -0
- 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 +4 -6
- data/lib/rubocop/cop/style/nil_comparison.rb +1 -1
- data/lib/rubocop/cop/style/nil_lambda.rb +4 -4
- 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 +26 -2
- data/lib/rubocop/cop/style/numeric_predicate.rb +53 -11
- data/lib/rubocop/cop/style/object_then.rb +74 -0
- data/lib/rubocop/cop/style/one_line_conditional.rb +16 -40
- data/lib/rubocop/cop/style/open_struct_use.rb +69 -0
- 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 +2 -2
- data/lib/rubocop/cop/style/optional_boolean_parameter.rb +5 -4
- 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 +13 -3
- 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 +22 -8
- data/lib/rubocop/cop/style/raise_args.rb +10 -4
- data/lib/rubocop/cop/style/random_with_offset.rb +1 -1
- data/lib/rubocop/cop/style/redundant_argument.rb +10 -4
- data/lib/rubocop/cop/style/redundant_assignment.rb +1 -1
- data/lib/rubocop/cop/style/redundant_begin.rb +22 -12
- data/lib/rubocop/cop/style/redundant_capital_w.rb +2 -3
- data/lib/rubocop/cop/style/redundant_condition.rb +147 -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 +156 -0
- data/lib/rubocop/cop/style/redundant_interpolation.rb +39 -4
- data/lib/rubocop/cop/style/redundant_parentheses.rb +22 -24
- data/lib/rubocop/cop/style/redundant_percent_q.rb +1 -1
- data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +20 -4
- data/lib/rubocop/cop/style/redundant_regexp_escape.rb +15 -5
- data/lib/rubocop/cop/style/redundant_return.rb +9 -2
- data/lib/rubocop/cop/style/redundant_self.rb +4 -2
- data/lib/rubocop/cop/style/redundant_self_assignment.rb +3 -4
- data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +1 -1
- data/lib/rubocop/cop/style/redundant_sort.rb +23 -8
- 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 +135 -0
- data/lib/rubocop/cop/style/rescue_modifier.rb +2 -2
- data/lib/rubocop/cop/style/rescue_standard_error.rb +13 -13
- data/lib/rubocop/cop/style/return_nil.rb +1 -1
- data/lib/rubocop/cop/style/safe_navigation.rb +57 -22
- data/lib/rubocop/cop/style/sample.rb +6 -4
- data/lib/rubocop/cop/style/select_by_regexp.rb +57 -11
- 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_argument_dig.rb +5 -0
- data/lib/rubocop/cop/style/single_line_block_params.rb +4 -4
- data/lib/rubocop/cop/style/single_line_methods.rb +2 -2
- data/lib/rubocop/cop/style/slicing_with_range.rb +1 -1
- data/lib/rubocop/cop/style/sole_nested_conditional.rb +99 -31
- data/lib/rubocop/cop/style/special_global_vars.rb +66 -8
- data/lib/rubocop/cop/style/static_class.rb +33 -2
- data/lib/rubocop/cop/style/stderr_puts.rb +1 -1
- data/lib/rubocop/cop/style/string_chars.rb +1 -1
- data/lib/rubocop/cop/style/string_concatenation.rb +13 -8
- 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 +4 -4
- data/lib/rubocop/cop/style/swap_values.rb +4 -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 +68 -12
- data/lib/rubocop/cop/style/ternary_parentheses.rb +19 -18
- 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 +2 -2
- data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +2 -2
- data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +2 -2
- data/lib/rubocop/cop/style/trailing_method_end_statement.rb +2 -5
- data/lib/rubocop/cop/style/trailing_underscore_variable.rb +1 -1
- data/lib/rubocop/cop/style/trivial_accessors.rb +11 -9
- data/lib/rubocop/cop/style/unless_else.rb +5 -1
- data/lib/rubocop/cop/style/unless_logical_operators.rb +1 -1
- data/lib/rubocop/cop/style/unpack_first.rb +5 -2
- 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 +48 -6
- data/lib/rubocop/cop/style/yoda_condition.rb +13 -6
- data/lib/rubocop/cop/style/yoda_expression.rb +90 -0
- data/lib/rubocop/cop/style/zero_length_predicate.rb +32 -15
- data/lib/rubocop/cop/team.rb +55 -51
- data/lib/rubocop/cop/util.rb +54 -8
- data/lib/rubocop/cop/variable_force/assignment.rb +1 -1
- data/lib/rubocop/cop/variable_force/branch.rb +1 -1
- data/lib/rubocop/cop/variable_force/scope.rb +3 -3
- data/lib/rubocop/cop/variable_force/variable_table.rb +4 -2
- data/lib/rubocop/cop/variable_force.rb +19 -35
- data/lib/rubocop/cops_documentation_generator.rb +56 -16
- data/lib/rubocop/directive_comment.rb +1 -1
- 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 +45 -11
- data/lib/rubocop/formatter/formatter_set.rb +20 -18
- data/lib/rubocop/formatter/git_hub_actions_formatter.rb +15 -2
- data/lib/rubocop/formatter/html_formatter.rb +11 -16
- data/lib/rubocop/formatter/json_formatter.rb +4 -1
- data/lib/rubocop/formatter/markdown_formatter.rb +78 -0
- data/lib/rubocop/formatter/offense_count_formatter.rb +15 -6
- 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 -4
- data/lib/rubocop/formatter.rb +34 -0
- data/lib/rubocop/magic_comment.rb +31 -5
- data/lib/rubocop/options.rb +164 -51
- data/lib/rubocop/path_util.rb +50 -22
- data/lib/rubocop/rake_task.rb +35 -10
- data/lib/rubocop/remote_config.rb +2 -4
- data/lib/rubocop/result_cache.rb +28 -17
- data/lib/rubocop/rspec/cop_helper.rb +26 -3
- data/lib/rubocop/rspec/expect_offense.rb +9 -7
- data/lib/rubocop/rspec/parallel_formatter.rb +90 -0
- data/lib/rubocop/rspec/shared_contexts.rb +47 -10
- data/lib/rubocop/rspec/support.rb +16 -1
- data/lib/rubocop/runner.rb +108 -27
- 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/string_interpreter.rb +4 -4
- data/lib/rubocop/target_finder.rb +2 -2
- data/lib/rubocop/target_ruby.rb +15 -8
- data/lib/rubocop/version.rb +22 -9
- data/lib/rubocop/yaml_duplication_checker.rb +1 -1
- data/lib/rubocop.rb +64 -35
- metadata +124 -40
- data/lib/rubocop/cop/gemspec/date_assignment.rb +0 -57
- data/lib/rubocop/cop/mixin/ignored_methods.rb +0 -52
- data/lib/rubocop/cop/mixin/ignored_pattern.rb +0 -29
data/config/default.yml
CHANGED
@@ -78,6 +78,8 @@ AllCops:
|
|
78
78
|
# When specifying style guide URLs, any paths and/or fragments will be
|
79
79
|
# evaluated relative to the base URL.
|
80
80
|
StyleGuideBaseURL: https://rubystyle.guide
|
81
|
+
# Documentation URLs will be constructed using the base URL.
|
82
|
+
DocumentationBaseURL: https://docs.rubocop.org/rubocop
|
81
83
|
# Extra details are not displayed in offense messages by default. Change
|
82
84
|
# behavior by overriding ExtraDetails, or by giving the
|
83
85
|
# `-E/--extra-details` option.
|
@@ -138,7 +140,7 @@ AllCops:
|
|
138
140
|
# or gems.locked file. (Although the Ruby version is specified in the Gemfile
|
139
141
|
# or gems.rb file, RuboCop reads the final value from the lock file.) If the
|
140
142
|
# Ruby version is still unresolved, RuboCop will use the oldest officially
|
141
|
-
# supported Ruby version (currently Ruby 2.
|
143
|
+
# supported Ruby version (currently Ruby 2.6).
|
142
144
|
TargetRubyVersion: ~
|
143
145
|
# Determines if a notification for extension libraries should be shown when
|
144
146
|
# rubocop is run. Keys are the name of the extension, and values are an array
|
@@ -150,13 +152,18 @@ AllCops:
|
|
150
152
|
rubocop-minitest: [minitest]
|
151
153
|
rubocop-sequel: [sequel]
|
152
154
|
rubocop-rake: [rake]
|
155
|
+
rubocop-graphql: [graphql]
|
156
|
+
# Enable/Disable checking the methods extended by Active Support.
|
157
|
+
ActiveSupportExtensionsEnabled: false
|
153
158
|
|
154
159
|
#################### Bundler ###############################
|
155
160
|
|
156
161
|
Bundler/DuplicatedGem:
|
157
162
|
Description: 'Checks for duplicate gem entries in Gemfile.'
|
158
163
|
Enabled: true
|
164
|
+
Severity: warning
|
159
165
|
VersionAdded: '0.46'
|
166
|
+
VersionChanged: '1.40'
|
160
167
|
Include:
|
161
168
|
- '**/*.gemfile'
|
162
169
|
- '**/Gemfile'
|
@@ -208,7 +215,9 @@ Bundler/InsecureProtocolSource:
|
|
208
215
|
because HTTP requests are insecure. Please change your source to
|
209
216
|
'https://rubygems.org' if possible, or 'http://rubygems.org' if not.
|
210
217
|
Enabled: true
|
218
|
+
Severity: warning
|
211
219
|
VersionAdded: '0.50'
|
220
|
+
VersionChanged: '1.40'
|
212
221
|
AllowHttpProtocol: true
|
213
222
|
Include:
|
214
223
|
- '**/*.gemfile'
|
@@ -232,17 +241,48 @@ Bundler/OrderedGems:
|
|
232
241
|
|
233
242
|
#################### Gemspec ###############################
|
234
243
|
|
235
|
-
Gemspec/
|
236
|
-
Description: '
|
244
|
+
Gemspec/DependencyVersion:
|
245
|
+
Description: 'Requires or forbids specifying gem dependency versions.'
|
246
|
+
Enabled: false
|
247
|
+
VersionAdded: '1.29'
|
248
|
+
EnforcedStyle: 'required'
|
249
|
+
SupportedStyles:
|
250
|
+
- 'required'
|
251
|
+
- 'forbidden'
|
252
|
+
Include:
|
253
|
+
- '**/*.gemspec'
|
254
|
+
AllowedGems: []
|
255
|
+
|
256
|
+
Gemspec/DeprecatedAttributeAssignment:
|
257
|
+
Description: Checks that deprecated attribute assignments are not set in a gemspec file.
|
237
258
|
Enabled: pending
|
238
|
-
|
259
|
+
Severity: warning
|
260
|
+
VersionAdded: '1.30'
|
261
|
+
VersionChanged: '1.40'
|
239
262
|
Include:
|
240
263
|
- '**/*.gemspec'
|
241
264
|
|
265
|
+
Gemspec/DevelopmentDependencies:
|
266
|
+
Description: Checks that development dependencies are specified in Gemfile rather than gemspec.
|
267
|
+
Enabled: pending
|
268
|
+
VersionAdded: '1.44'
|
269
|
+
EnforcedStyle: Gemfile
|
270
|
+
SupportedStyles:
|
271
|
+
- Gemfile
|
272
|
+
- gems.rb
|
273
|
+
- gemspec
|
274
|
+
AllowedGems: []
|
275
|
+
Include:
|
276
|
+
- '**/*.gemspec'
|
277
|
+
- '**/Gemfile'
|
278
|
+
- '**/gems.rb'
|
279
|
+
|
242
280
|
Gemspec/DuplicatedAssignment:
|
243
281
|
Description: 'An attribute assignment method calls should be listed only once in a gemspec.'
|
244
282
|
Enabled: true
|
283
|
+
Severity: warning
|
245
284
|
VersionAdded: '0.52'
|
285
|
+
VersionChanged: '1.40'
|
246
286
|
Include:
|
247
287
|
- '**/*.gemspec'
|
248
288
|
|
@@ -258,11 +298,23 @@ Gemspec/OrderedDependencies:
|
|
258
298
|
Include:
|
259
299
|
- '**/*.gemspec'
|
260
300
|
|
301
|
+
Gemspec/RequireMFA:
|
302
|
+
Description: 'Checks that the gemspec has metadata to require Multi-Factor Authentication from RubyGems.'
|
303
|
+
Enabled: pending
|
304
|
+
Severity: warning
|
305
|
+
VersionAdded: '1.23'
|
306
|
+
VersionChanged: '1.40'
|
307
|
+
Reference:
|
308
|
+
- https://guides.rubygems.org/mfa-requirement-opt-in/
|
309
|
+
Include:
|
310
|
+
- '**/*.gemspec'
|
311
|
+
|
261
312
|
Gemspec/RequiredRubyVersion:
|
262
313
|
Description: 'Checks that `required_ruby_version` of gemspec is specified and equal to `TargetRubyVersion` of .rubocop.yml.'
|
263
314
|
Enabled: true
|
315
|
+
Severity: warning
|
264
316
|
VersionAdded: '0.52'
|
265
|
-
VersionChanged: '
|
317
|
+
VersionChanged: '1.40'
|
266
318
|
Include:
|
267
319
|
- '**/*.gemspec'
|
268
320
|
|
@@ -270,7 +322,9 @@ Gemspec/RubyVersionGlobalsUsage:
|
|
270
322
|
Description: Checks usage of RUBY_VERSION in gemspec.
|
271
323
|
StyleGuide: '#no-ruby-version-in-the-gemspec'
|
272
324
|
Enabled: true
|
325
|
+
Severity: warning
|
273
326
|
VersionAdded: '0.72'
|
327
|
+
VersionChanged: '1.40'
|
274
328
|
Include:
|
275
329
|
- '**/*.gemspec'
|
276
330
|
|
@@ -353,7 +407,7 @@ Layout/AssignmentIndentation:
|
|
353
407
|
right-hand-side of a multi-line assignment.
|
354
408
|
Enabled: true
|
355
409
|
VersionAdded: '0.49'
|
356
|
-
VersionChanged: '
|
410
|
+
VersionChanged: '1.45'
|
357
411
|
# By default the indentation width from `Layout/IndentationWidth` is used,
|
358
412
|
# but it can be overridden by setting this parameter.
|
359
413
|
IndentationWidth: ~
|
@@ -418,13 +472,13 @@ Layout/ClassStructure:
|
|
418
472
|
- prepend
|
419
473
|
- extend
|
420
474
|
ExpectedOrder:
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
475
|
+
- module_inclusion
|
476
|
+
- constants
|
477
|
+
- public_class_methods
|
478
|
+
- initializer
|
479
|
+
- public_methods
|
480
|
+
- protected_methods
|
481
|
+
- private_methods
|
428
482
|
|
429
483
|
Layout/ClosingHeredocIndentation:
|
430
484
|
Description: 'Checks the indentation of here document closings.'
|
@@ -439,7 +493,11 @@ Layout/ClosingParenthesisIndentation:
|
|
439
493
|
Layout/CommentIndentation:
|
440
494
|
Description: 'Indentation of comments.'
|
441
495
|
Enabled: true
|
496
|
+
# When true, allows comments to have extra indentation if that aligns them
|
497
|
+
# with a comment on the preceding line.
|
498
|
+
AllowForAlignment: false
|
442
499
|
VersionAdded: '0.49'
|
500
|
+
VersionChanged: '1.24'
|
443
501
|
|
444
502
|
Layout/ConditionPosition:
|
445
503
|
Description: >-
|
@@ -511,13 +569,13 @@ Layout/EmptyLineBetweenDefs:
|
|
511
569
|
StyleGuide: '#empty-lines-between-methods'
|
512
570
|
Enabled: true
|
513
571
|
VersionAdded: '0.49'
|
514
|
-
VersionChanged: '1.
|
572
|
+
VersionChanged: '1.23'
|
515
573
|
EmptyLineBetweenMethodDefs: true
|
516
574
|
EmptyLineBetweenClassDefs: true
|
517
575
|
EmptyLineBetweenModuleDefs: true
|
518
|
-
#
|
519
|
-
# need an empty line between them.
|
520
|
-
AllowAdjacentOneLineDefs:
|
576
|
+
# `AllowAdjacentOneLineDefs` means that single line method definitions don't
|
577
|
+
# need an empty line between them. `true` by default.
|
578
|
+
AllowAdjacentOneLineDefs: true
|
521
579
|
# Can be array to specify minimum and maximum number of empty lines, e.g. [1, 2]
|
522
580
|
NumberOfEmptyLines: 1
|
523
581
|
|
@@ -718,6 +776,7 @@ Layout/FirstArrayElementLineBreak:
|
|
718
776
|
multi-line array.
|
719
777
|
Enabled: false
|
720
778
|
VersionAdded: '0.49'
|
779
|
+
AllowMultilineFinalElement: false
|
721
780
|
|
722
781
|
Layout/FirstHashElementIndentation:
|
723
782
|
Description: 'Checks the indentation of the first key in a hash literal.'
|
@@ -750,6 +809,7 @@ Layout/FirstHashElementLineBreak:
|
|
750
809
|
multi-line hash.
|
751
810
|
Enabled: false
|
752
811
|
VersionAdded: '0.49'
|
812
|
+
AllowMultilineFinalElement: false
|
753
813
|
|
754
814
|
Layout/FirstMethodArgumentLineBreak:
|
755
815
|
Description: >-
|
@@ -757,6 +817,7 @@ Layout/FirstMethodArgumentLineBreak:
|
|
757
817
|
multi-line method call.
|
758
818
|
Enabled: false
|
759
819
|
VersionAdded: '0.49'
|
820
|
+
AllowMultilineFinalElement: false
|
760
821
|
|
761
822
|
Layout/FirstMethodParameterLineBreak:
|
762
823
|
Description: >-
|
@@ -764,6 +825,7 @@ Layout/FirstMethodParameterLineBreak:
|
|
764
825
|
multi-line method parameter definition.
|
765
826
|
Enabled: false
|
766
827
|
VersionAdded: '0.49'
|
828
|
+
AllowMultilineFinalElement: false
|
767
829
|
|
768
830
|
Layout/FirstParameterIndentation:
|
769
831
|
Description: >-
|
@@ -867,7 +929,7 @@ Layout/HeredocArgumentClosingParenthesis:
|
|
867
929
|
VersionAdded: '0.68'
|
868
930
|
|
869
931
|
Layout/HeredocIndentation:
|
870
|
-
Description: '
|
932
|
+
Description: 'Checks the indentation of the here document bodies.'
|
871
933
|
StyleGuide: '#squiggly-heredocs'
|
872
934
|
Enabled: true
|
873
935
|
VersionAdded: '0.49'
|
@@ -900,7 +962,7 @@ Layout/IndentationStyle:
|
|
900
962
|
VersionChanged: '0.82'
|
901
963
|
# By default the indentation width from `Layout/IndentationWidth` is used,
|
902
964
|
# but it can be overridden by setting this parameter.
|
903
|
-
# It is used during
|
965
|
+
# It is used during autocorrection to determine how many spaces should
|
904
966
|
# replace each tab.
|
905
967
|
IndentationWidth: ~
|
906
968
|
EnforcedStyle: spaces
|
@@ -915,7 +977,7 @@ Layout/IndentationWidth:
|
|
915
977
|
VersionAdded: '0.49'
|
916
978
|
# Number of spaces for each indentation level.
|
917
979
|
Width: 2
|
918
|
-
|
980
|
+
AllowedPatterns: []
|
919
981
|
|
920
982
|
Layout/InitialIndentation:
|
921
983
|
Description: >-
|
@@ -938,6 +1000,29 @@ Layout/LeadingEmptyLines:
|
|
938
1000
|
VersionAdded: '0.57'
|
939
1001
|
VersionChanged: '0.77'
|
940
1002
|
|
1003
|
+
Layout/LineContinuationLeadingSpace:
|
1004
|
+
Description: >-
|
1005
|
+
Use trailing spaces instead of leading spaces in strings
|
1006
|
+
broken over multiple lines (by a backslash).
|
1007
|
+
Enabled: pending
|
1008
|
+
VersionAdded: '1.31'
|
1009
|
+
VersionChanged: '1.45'
|
1010
|
+
EnforcedStyle: trailing
|
1011
|
+
SupportedStyles:
|
1012
|
+
- leading
|
1013
|
+
- trailing
|
1014
|
+
|
1015
|
+
Layout/LineContinuationSpacing:
|
1016
|
+
Description: 'Checks the spacing in front of backslash in line continuations.'
|
1017
|
+
Enabled: pending
|
1018
|
+
AutoCorrect: true
|
1019
|
+
SafeAutoCorrect: true
|
1020
|
+
VersionAdded: '1.31'
|
1021
|
+
EnforcedStyle: space
|
1022
|
+
SupportedStyles:
|
1023
|
+
- space
|
1024
|
+
- no_space
|
1025
|
+
|
941
1026
|
Layout/LineEndStringConcatenationIndentation:
|
942
1027
|
Description: >-
|
943
1028
|
Checks the indentation of the next line after a line that
|
@@ -969,10 +1054,10 @@ Layout/LineLength:
|
|
969
1054
|
# The IgnoreCopDirectives option causes the LineLength rule to ignore cop
|
970
1055
|
# directives like '# rubocop: enable ...' when calculating a line's length.
|
971
1056
|
IgnoreCopDirectives: true
|
972
|
-
# The
|
1057
|
+
# The AllowedPatterns option is a list of !ruby/regexp and/or string
|
973
1058
|
# elements. Strings will be converted to Regexp objects. A line that matches
|
974
1059
|
# any regular expression listed in this option will be ignored by LineLength.
|
975
|
-
|
1060
|
+
AllowedPatterns: []
|
976
1061
|
|
977
1062
|
Layout/MultilineArrayBraceLayout:
|
978
1063
|
Description: >-
|
@@ -996,6 +1081,7 @@ Layout/MultilineArrayLineBreaks:
|
|
996
1081
|
starts on a separate line.
|
997
1082
|
Enabled: false
|
998
1083
|
VersionAdded: '0.67'
|
1084
|
+
AllowMultilineFinalElement: false
|
999
1085
|
|
1000
1086
|
Layout/MultilineAssignmentLayout:
|
1001
1087
|
Description: 'Check for a newline after the assignment operator in multi-line assignments.'
|
@@ -1046,6 +1132,7 @@ Layout/MultilineHashKeyLineBreaks:
|
|
1046
1132
|
starts on a separate line.
|
1047
1133
|
Enabled: false
|
1048
1134
|
VersionAdded: '0.67'
|
1135
|
+
AllowMultilineFinalElement: false
|
1049
1136
|
|
1050
1137
|
Layout/MultilineMethodArgumentLineBreaks:
|
1051
1138
|
Description: >-
|
@@ -1053,6 +1140,7 @@ Layout/MultilineMethodArgumentLineBreaks:
|
|
1053
1140
|
starts on a separate line.
|
1054
1141
|
Enabled: false
|
1055
1142
|
VersionAdded: '0.67'
|
1143
|
+
AllowMultilineFinalElement: false
|
1056
1144
|
|
1057
1145
|
Layout/MultilineMethodCallBraceLayout:
|
1058
1146
|
Description: >-
|
@@ -1101,6 +1189,14 @@ Layout/MultilineMethodDefinitionBraceLayout:
|
|
1101
1189
|
- new_line
|
1102
1190
|
- same_line
|
1103
1191
|
|
1192
|
+
Layout/MultilineMethodParameterLineBreaks:
|
1193
|
+
Description: >-
|
1194
|
+
Checks that each parameter in a multi-line method definition
|
1195
|
+
starts on a separate line.
|
1196
|
+
Enabled: false
|
1197
|
+
VersionAdded: '1.32'
|
1198
|
+
AllowMultilineFinalElement: false
|
1199
|
+
|
1104
1200
|
Layout/MultilineOperationIndentation:
|
1105
1201
|
Description: >-
|
1106
1202
|
Checks indentation of binary operations that span more than
|
@@ -1438,7 +1534,8 @@ Lint/AmbiguousBlockAssociation:
|
|
1438
1534
|
Enabled: true
|
1439
1535
|
VersionAdded: '0.48'
|
1440
1536
|
VersionChanged: '1.13'
|
1441
|
-
|
1537
|
+
AllowedMethods: []
|
1538
|
+
AllowedPatterns: []
|
1442
1539
|
|
1443
1540
|
Lint/AmbiguousOperator:
|
1444
1541
|
Description: >-
|
@@ -1475,7 +1572,9 @@ Lint/AssignmentInCondition:
|
|
1475
1572
|
Description: "Don't use assignment in conditions."
|
1476
1573
|
StyleGuide: '#safe-assignment-in-condition'
|
1477
1574
|
Enabled: true
|
1575
|
+
SafeAutoCorrect: false
|
1478
1576
|
VersionAdded: '0.9'
|
1577
|
+
VersionChanged: '1.45'
|
1479
1578
|
AllowSafeAssignment: true
|
1480
1579
|
|
1481
1580
|
Lint/BigDecimalNew:
|
@@ -1484,7 +1583,7 @@ Lint/BigDecimalNew:
|
|
1484
1583
|
VersionAdded: '0.53'
|
1485
1584
|
|
1486
1585
|
Lint/BinaryOperatorWithIdenticalOperands:
|
1487
|
-
Description: '
|
1586
|
+
Description: 'Checks for places where binary operator has identical operands.'
|
1488
1587
|
Enabled: true
|
1489
1588
|
Safe: false
|
1490
1589
|
VersionAdded: '0.89'
|
@@ -1513,6 +1612,11 @@ Lint/ConstantDefinitionInBlock:
|
|
1513
1612
|
AllowedMethods:
|
1514
1613
|
- enums
|
1515
1614
|
|
1615
|
+
Lint/ConstantOverwrittenInRescue:
|
1616
|
+
Description: 'Checks for overwriting an exception with an exception result by use `rescue =>`.'
|
1617
|
+
Enabled: pending
|
1618
|
+
VersionAdded: '1.31'
|
1619
|
+
|
1516
1620
|
Lint/ConstantResolution:
|
1517
1621
|
Description: 'Check that constants are fully qualified with `::`.'
|
1518
1622
|
Enabled: false
|
@@ -1527,12 +1631,13 @@ Lint/Debugger:
|
|
1527
1631
|
Enabled: true
|
1528
1632
|
VersionAdded: '0.14'
|
1529
1633
|
VersionChanged: '1.10'
|
1530
|
-
DebuggerReceivers: [] # deprecated
|
1531
1634
|
DebuggerMethods:
|
1532
1635
|
# Groups are available so that a specific group can be disabled in
|
1533
1636
|
# a user's configuration, but are otherwise not significant.
|
1534
1637
|
Kernel:
|
1535
1638
|
- binding.irb
|
1639
|
+
- p
|
1640
|
+
- Kernel.binding.irb
|
1536
1641
|
Byebug:
|
1537
1642
|
- byebug
|
1538
1643
|
- remote_byebug
|
@@ -1541,6 +1646,9 @@ Lint/Debugger:
|
|
1541
1646
|
Capybara:
|
1542
1647
|
- save_and_open_page
|
1543
1648
|
- save_and_open_screenshot
|
1649
|
+
PP:
|
1650
|
+
- PP.pp
|
1651
|
+
- pp
|
1544
1652
|
debug.rb:
|
1545
1653
|
- binding.b
|
1546
1654
|
- binding.break
|
@@ -1550,6 +1658,9 @@ Lint/Debugger:
|
|
1550
1658
|
- binding.pry
|
1551
1659
|
- binding.remote_pry
|
1552
1660
|
- binding.pry_remote
|
1661
|
+
- Kernel.binding.pry
|
1662
|
+
- Kernel.binding.remote_pry
|
1663
|
+
- Kernel.binding.pry_remote
|
1553
1664
|
- Pry.rescue
|
1554
1665
|
Rails:
|
1555
1666
|
- debugger
|
@@ -1568,6 +1679,7 @@ Lint/DeprecatedConstants:
|
|
1568
1679
|
Description: 'Checks for deprecated constants.'
|
1569
1680
|
Enabled: pending
|
1570
1681
|
VersionAdded: '1.8'
|
1682
|
+
VersionChanged: '1.40'
|
1571
1683
|
# You can configure deprecated constants.
|
1572
1684
|
# If there is an alternative method, you can set alternative value as `Alternative`.
|
1573
1685
|
# And you can set the deprecated version as `DeprecatedVersion`.
|
@@ -1588,9 +1700,18 @@ Lint/DeprecatedConstants:
|
|
1588
1700
|
'FALSE':
|
1589
1701
|
Alternative: 'false'
|
1590
1702
|
DeprecatedVersion: '2.4'
|
1703
|
+
'Net::HTTPServerException':
|
1704
|
+
Alternative: 'Net::HTTPClientException'
|
1705
|
+
DeprecatedVersion: '2.6'
|
1591
1706
|
'Random::DEFAULT':
|
1592
1707
|
Alternative: 'Random.new'
|
1593
1708
|
DeprecatedVersion: '3.0'
|
1709
|
+
'Struct::Group':
|
1710
|
+
Alternative: 'Etc::Group'
|
1711
|
+
DeprecatedVersion: '3.0'
|
1712
|
+
'Struct::Passwd':
|
1713
|
+
Alternative: 'Etc::Passwd'
|
1714
|
+
DeprecatedVersion: '3.0'
|
1594
1715
|
|
1595
1716
|
Lint/DeprecatedOpenSSLConstant:
|
1596
1717
|
Description: "Don't use algorithm constants for `OpenSSL::Cipher` and `OpenSSL::Digest`."
|
@@ -1628,6 +1749,11 @@ Lint/DuplicateHashKey:
|
|
1628
1749
|
VersionAdded: '0.34'
|
1629
1750
|
VersionChanged: '0.77'
|
1630
1751
|
|
1752
|
+
Lint/DuplicateMagicComment:
|
1753
|
+
Description: 'Check for duplicated magic comments.'
|
1754
|
+
Enabled: pending
|
1755
|
+
VersionAdded: '1.37'
|
1756
|
+
|
1631
1757
|
Lint/DuplicateMethods:
|
1632
1758
|
Description: 'Check for duplicate method definitions.'
|
1633
1759
|
Enabled: true
|
@@ -1641,7 +1767,9 @@ Lint/DuplicateRegexpCharacterClassElement:
|
|
1641
1767
|
Lint/DuplicateRequire:
|
1642
1768
|
Description: 'Check for duplicate `require`s and `require_relative`s.'
|
1643
1769
|
Enabled: true
|
1770
|
+
SafeAutoCorrect: false
|
1644
1771
|
VersionAdded: '0.90'
|
1772
|
+
VersionChanged: '1.28'
|
1645
1773
|
|
1646
1774
|
Lint/DuplicateRescueException:
|
1647
1775
|
Description: 'Checks that there are no repeated exceptions used in `rescue` expressions.'
|
@@ -1660,7 +1788,7 @@ Lint/ElseLayout:
|
|
1660
1788
|
VersionChanged: '1.2'
|
1661
1789
|
|
1662
1790
|
Lint/EmptyBlock:
|
1663
|
-
Description: '
|
1791
|
+
Description: 'Checks for blocks without a body.'
|
1664
1792
|
Enabled: pending
|
1665
1793
|
VersionAdded: '1.1'
|
1666
1794
|
VersionChanged: '1.15'
|
@@ -1674,10 +1802,12 @@ Lint/EmptyClass:
|
|
1674
1802
|
AllowComments: false
|
1675
1803
|
|
1676
1804
|
Lint/EmptyConditionalBody:
|
1677
|
-
Description: '
|
1805
|
+
Description: 'Checks for the presence of `if`, `elsif` and `unless` branches without a body.'
|
1678
1806
|
Enabled: true
|
1807
|
+
SafeAutoCorrect: false
|
1679
1808
|
AllowComments: true
|
1680
1809
|
VersionAdded: '0.89'
|
1810
|
+
VersionChanged: '1.34'
|
1681
1811
|
|
1682
1812
|
Lint/EmptyEnsure:
|
1683
1813
|
Description: 'Checks for empty ensure block.'
|
@@ -1782,7 +1912,9 @@ Lint/ImplicitStringConcatenation:
|
|
1782
1912
|
Lint/IncompatibleIoSelectWithFiberScheduler:
|
1783
1913
|
Description: 'Checks for `IO.select` that is incompatible with Fiber Scheduler.'
|
1784
1914
|
Enabled: pending
|
1915
|
+
SafeAutoCorrect: false
|
1785
1916
|
VersionAdded: '1.21'
|
1917
|
+
VersionChanged: '1.24'
|
1786
1918
|
|
1787
1919
|
Lint/IneffectiveAccessModifier:
|
1788
1920
|
Description: >-
|
@@ -1794,19 +1926,21 @@ Lint/IneffectiveAccessModifier:
|
|
1794
1926
|
Lint/InheritException:
|
1795
1927
|
Description: 'Avoid inheriting from the `Exception` class.'
|
1796
1928
|
Enabled: true
|
1929
|
+
SafeAutoCorrect: false
|
1797
1930
|
VersionAdded: '0.41'
|
1931
|
+
VersionChanged: '1.26'
|
1798
1932
|
# The default base class in favour of `Exception`.
|
1799
|
-
EnforcedStyle:
|
1933
|
+
EnforcedStyle: standard_error
|
1800
1934
|
SupportedStyles:
|
1801
|
-
- runtime_error
|
1802
1935
|
- standard_error
|
1936
|
+
- runtime_error
|
1803
1937
|
|
1804
1938
|
Lint/InterpolationCheck:
|
1805
|
-
Description: '
|
1939
|
+
Description: 'Checks for interpolation in a single quoted string.'
|
1806
1940
|
Enabled: true
|
1807
|
-
|
1941
|
+
SafeAutoCorrect: false
|
1808
1942
|
VersionAdded: '0.50'
|
1809
|
-
VersionChanged: '
|
1943
|
+
VersionChanged: '1.40'
|
1810
1944
|
|
1811
1945
|
Lint/LambdaWithoutLiteralBlock:
|
1812
1946
|
Description: 'Checks uses of lambda without a literal block.'
|
@@ -1849,7 +1983,7 @@ Lint/MissingCopEnableDirective:
|
|
1849
1983
|
|
1850
1984
|
Lint/MissingSuper:
|
1851
1985
|
Description: >-
|
1852
|
-
|
1986
|
+
Checks for the presence of constructors and lifecycle callbacks
|
1853
1987
|
without calls to `super`.
|
1854
1988
|
Enabled: true
|
1855
1989
|
VersionAdded: '0.89'
|
@@ -1870,6 +2004,8 @@ Lint/NestedMethodDefinition:
|
|
1870
2004
|
Description: 'Do not use nested method definitions.'
|
1871
2005
|
StyleGuide: '#no-nested-methods'
|
1872
2006
|
Enabled: true
|
2007
|
+
AllowedMethods: []
|
2008
|
+
AllowedPatterns: []
|
1873
2009
|
VersionAdded: '0.32'
|
1874
2010
|
|
1875
2011
|
Lint/NestedPercentLiteral:
|
@@ -1878,7 +2014,7 @@ Lint/NestedPercentLiteral:
|
|
1878
2014
|
VersionAdded: '0.52'
|
1879
2015
|
|
1880
2016
|
Lint/NextWithoutAccumulator:
|
1881
|
-
Description:
|
2017
|
+
Description: >-
|
1882
2018
|
Do not omit the accumulator when calling `next`
|
1883
2019
|
in a `reduce`/`inject` block.
|
1884
2020
|
Enabled: true
|
@@ -1889,6 +2025,13 @@ Lint/NoReturnInBeginEndBlocks:
|
|
1889
2025
|
Enabled: pending
|
1890
2026
|
VersionAdded: '1.2'
|
1891
2027
|
|
2028
|
+
Lint/NonAtomicFileOperation:
|
2029
|
+
Description: Checks for non-atomic file operations.
|
2030
|
+
StyleGuide: '#atomic-file-operations'
|
2031
|
+
Enabled: pending
|
2032
|
+
VersionAdded: '1.31'
|
2033
|
+
SafeAutoCorrect: false
|
2034
|
+
|
1892
2035
|
Lint/NonDeterministicRequireOrder:
|
1893
2036
|
Description: 'Always sort arrays returned by Dir.glob when requiring files.'
|
1894
2037
|
Enabled: true
|
@@ -1906,7 +2049,8 @@ Lint/NumberConversion:
|
|
1906
2049
|
VersionAdded: '0.53'
|
1907
2050
|
VersionChanged: '1.1'
|
1908
2051
|
SafeAutoCorrect: false
|
1909
|
-
|
2052
|
+
AllowedMethods: []
|
2053
|
+
AllowedPatterns: []
|
1910
2054
|
IgnoredClasses:
|
1911
2055
|
- Time
|
1912
2056
|
- DateTime
|
@@ -1925,7 +2069,9 @@ Lint/OrAssignmentToConstant:
|
|
1925
2069
|
Lint/OrderedMagicComments:
|
1926
2070
|
Description: 'Checks the proper ordering of magic comments and whether a magic comment is not placed before a shebang.'
|
1927
2071
|
Enabled: true
|
2072
|
+
SafeAutoCorrect: false
|
1928
2073
|
VersionAdded: '0.53'
|
2074
|
+
VersionChanged: '1.37'
|
1929
2075
|
|
1930
2076
|
Lint/OutOfRangeRegexpRef:
|
1931
2077
|
Description: 'Checks for out of range reference for Regexp because it always returns nil.'
|
@@ -1989,6 +2135,8 @@ Lint/RedundantDirGlobSort:
|
|
1989
2135
|
Description: 'Checks for redundant `sort` method to `Dir.glob` and `Dir[]`.'
|
1990
2136
|
Enabled: pending
|
1991
2137
|
VersionAdded: '1.8'
|
2138
|
+
VersionChanged: '1.26'
|
2139
|
+
SafeAutoCorrect: false
|
1992
2140
|
|
1993
2141
|
Lint/RedundantRequireStatement:
|
1994
2142
|
Description: 'Checks for unnecessary `require` statement.'
|
@@ -2032,6 +2180,12 @@ Lint/RedundantWithObject:
|
|
2032
2180
|
Enabled: true
|
2033
2181
|
VersionAdded: '0.51'
|
2034
2182
|
|
2183
|
+
Lint/RefinementImportMethods:
|
2184
|
+
Description: 'Use `Refinement#import_methods` when using `include` or `prepend` in `refine` block.'
|
2185
|
+
Enabled: pending
|
2186
|
+
SafeAutoCorrect: false
|
2187
|
+
VersionAdded: '1.27'
|
2188
|
+
|
2035
2189
|
Lint/RegexpAsCondition:
|
2036
2190
|
Description: >-
|
2037
2191
|
Do not use regexp literal as a condition.
|
@@ -2047,6 +2201,11 @@ Lint/RequireParentheses:
|
|
2047
2201
|
Enabled: true
|
2048
2202
|
VersionAdded: '0.18'
|
2049
2203
|
|
2204
|
+
Lint/RequireRangeParentheses:
|
2205
|
+
Description: 'Checks that a range literal is enclosed in parentheses when the end of the range is at a line break.'
|
2206
|
+
Enabled: pending
|
2207
|
+
VersionAdded: '1.32'
|
2208
|
+
|
2050
2209
|
Lint/RequireRelativeSelfPath:
|
2051
2210
|
Description: 'Checks for uses a file requiring itself with `require_relative`.'
|
2052
2211
|
Enabled: pending
|
@@ -2170,7 +2329,7 @@ Lint/Syntax:
|
|
2170
2329
|
VersionAdded: '0.9'
|
2171
2330
|
|
2172
2331
|
Lint/ToEnumArguments:
|
2173
|
-
Description: '
|
2332
|
+
Description: 'Ensures that `to_enum`/`enum_for`, called for the current method, has correct arguments.'
|
2174
2333
|
Enabled: pending
|
2175
2334
|
VersionAdded: '1.1'
|
2176
2335
|
|
@@ -2180,12 +2339,12 @@ Lint/ToJSON:
|
|
2180
2339
|
VersionAdded: '0.66'
|
2181
2340
|
|
2182
2341
|
Lint/TopLevelReturnWithArgument:
|
2183
|
-
Description: '
|
2342
|
+
Description: 'Detects top level return statements with argument.'
|
2184
2343
|
Enabled: true
|
2185
2344
|
VersionAdded: '0.89'
|
2186
2345
|
|
2187
2346
|
Lint/TrailingCommaInAttributeDeclaration:
|
2188
|
-
Description: '
|
2347
|
+
Description: 'Checks for trailing commas in attribute declarations.'
|
2189
2348
|
Enabled: true
|
2190
2349
|
VersionAdded: '0.90'
|
2191
2350
|
|
@@ -2234,11 +2393,11 @@ Lint/UnreachableCode:
|
|
2234
2393
|
VersionAdded: '0.9'
|
2235
2394
|
|
2236
2395
|
Lint/UnreachableLoop:
|
2237
|
-
Description: '
|
2396
|
+
Description: 'Checks for loops that will have at most one iteration.'
|
2238
2397
|
Enabled: true
|
2239
2398
|
VersionAdded: '0.89'
|
2240
2399
|
VersionChanged: '1.7'
|
2241
|
-
|
2400
|
+
AllowedPatterns:
|
2242
2401
|
# RSpec uses `times` in its message expectations
|
2243
2402
|
# eg. `exactly(2).times`
|
2244
2403
|
- !ruby/regexp /(exactly|at_least|at_most)\(\d+\)\.times/
|
@@ -2296,13 +2455,24 @@ Lint/UselessElseWithoutRescue:
|
|
2296
2455
|
Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
|
2297
2456
|
Enabled: true
|
2298
2457
|
VersionAdded: '0.17'
|
2458
|
+
VersionChanged: '1.31'
|
2299
2459
|
|
2300
2460
|
Lint/UselessMethodDefinition:
|
2301
2461
|
Description: 'Checks for useless method definitions.'
|
2302
2462
|
Enabled: true
|
2303
2463
|
VersionAdded: '0.90'
|
2464
|
+
VersionChanged: '0.91'
|
2304
2465
|
Safe: false
|
2305
|
-
|
2466
|
+
|
2467
|
+
Lint/UselessRescue:
|
2468
|
+
Description: 'Checks for useless `rescue`s.'
|
2469
|
+
Enabled: pending
|
2470
|
+
VersionAdded: '1.43'
|
2471
|
+
|
2472
|
+
Lint/UselessRuby2Keywords:
|
2473
|
+
Description: 'Finds unnecessary uses of `ruby2_keywords`.'
|
2474
|
+
Enabled: pending
|
2475
|
+
VersionAdded: '1.23'
|
2306
2476
|
|
2307
2477
|
Lint/UselessSetterCall:
|
2308
2478
|
Description: 'Checks for useless setter call to a local variable.'
|
@@ -2338,7 +2508,8 @@ Metrics/AbcSize:
|
|
2338
2508
|
VersionChanged: '1.5'
|
2339
2509
|
# The ABC size is a calculated magnitude, so this number can be an Integer or
|
2340
2510
|
# a Float.
|
2341
|
-
|
2511
|
+
AllowedMethods: []
|
2512
|
+
AllowedPatterns: []
|
2342
2513
|
CountRepeatedAttributes: true
|
2343
2514
|
Max: 17
|
2344
2515
|
|
@@ -2350,11 +2521,11 @@ Metrics/BlockLength:
|
|
2350
2521
|
CountComments: false # count full line comments?
|
2351
2522
|
Max: 25
|
2352
2523
|
CountAsOne: []
|
2353
|
-
|
2354
|
-
IgnoredMethods:
|
2524
|
+
AllowedMethods:
|
2355
2525
|
# By default, exclude the `#refine` method, as it tends to have larger
|
2356
2526
|
# associated blocks.
|
2357
2527
|
- refine
|
2528
|
+
AllowedPatterns: []
|
2358
2529
|
Exclude:
|
2359
2530
|
- '**/*.gemspec'
|
2360
2531
|
|
@@ -2384,7 +2555,8 @@ Metrics/CyclomaticComplexity:
|
|
2384
2555
|
Enabled: true
|
2385
2556
|
VersionAdded: '0.25'
|
2386
2557
|
VersionChanged: '0.81'
|
2387
|
-
|
2558
|
+
AllowedMethods: []
|
2559
|
+
AllowedPatterns: []
|
2388
2560
|
Max: 7
|
2389
2561
|
|
2390
2562
|
Metrics/MethodLength:
|
@@ -2396,8 +2568,8 @@ Metrics/MethodLength:
|
|
2396
2568
|
CountComments: false # count full line comments?
|
2397
2569
|
Max: 10
|
2398
2570
|
CountAsOne: []
|
2399
|
-
|
2400
|
-
|
2571
|
+
AllowedMethods: []
|
2572
|
+
AllowedPatterns: []
|
2401
2573
|
|
2402
2574
|
Metrics/ModuleLength:
|
2403
2575
|
Description: 'Avoid modules longer than 100 lines of code.'
|
@@ -2425,7 +2597,8 @@ Metrics/PerceivedComplexity:
|
|
2425
2597
|
Enabled: true
|
2426
2598
|
VersionAdded: '0.25'
|
2427
2599
|
VersionChanged: '0.81'
|
2428
|
-
|
2600
|
+
AllowedMethods: []
|
2601
|
+
AllowedPatterns: []
|
2429
2602
|
Max: 8
|
2430
2603
|
|
2431
2604
|
################## Migration #############################
|
@@ -2460,6 +2633,17 @@ Naming/BinaryOperatorParameterName:
|
|
2460
2633
|
VersionAdded: '0.50'
|
2461
2634
|
VersionChanged: '1.2'
|
2462
2635
|
|
2636
|
+
Naming/BlockForwarding:
|
2637
|
+
Description: 'Use anonymous block forwarding.'
|
2638
|
+
StyleGuide: '#block-forwarding'
|
2639
|
+
Enabled: pending
|
2640
|
+
VersionAdded: '1.24'
|
2641
|
+
EnforcedStyle: anonymous
|
2642
|
+
SupportedStyles:
|
2643
|
+
- anonymous
|
2644
|
+
- explicit
|
2645
|
+
BlockForwardingName: block
|
2646
|
+
|
2463
2647
|
Naming/BlockParameterName:
|
2464
2648
|
Description: >-
|
2465
2649
|
Checks for block parameter names that contain capital letters,
|
@@ -2497,6 +2681,7 @@ Naming/FileName:
|
|
2497
2681
|
StyleGuide: '#snake-case-files'
|
2498
2682
|
Enabled: true
|
2499
2683
|
VersionAdded: '0.50'
|
2684
|
+
VersionChanged: '1.23'
|
2500
2685
|
# Camel case file names listed in `AllCops:Include` and all file names listed
|
2501
2686
|
# in `AllCops:Exclude` are excluded by default. Add extra excludes here.
|
2502
2687
|
Exclude: []
|
@@ -2509,6 +2694,13 @@ Naming/FileName:
|
|
2509
2694
|
# whether each source file's class or module name matches the file name --
|
2510
2695
|
# not whether the nested module hierarchy matches the subdirectory path.
|
2511
2696
|
CheckDefinitionPathHierarchy: true
|
2697
|
+
# paths that are considered root directories, for example "lib" in most ruby projects
|
2698
|
+
# or "app/models" in rails projects
|
2699
|
+
CheckDefinitionPathHierarchyRoots:
|
2700
|
+
- lib
|
2701
|
+
- spec
|
2702
|
+
- test
|
2703
|
+
- src
|
2512
2704
|
# If non-`nil`, expect all source file names to match the following regex.
|
2513
2705
|
# Only the file name itself is matched, not the entire file path.
|
2514
2706
|
# Use anchors as necessary if you want to match the entire name rather than
|
@@ -2577,7 +2769,7 @@ Naming/HeredocDelimiterNaming:
|
|
2577
2769
|
Enabled: true
|
2578
2770
|
VersionAdded: '0.50'
|
2579
2771
|
ForbiddenDelimiters:
|
2580
|
-
- !ruby/regexp '/(^|\s)(EO[A-Z]{1}|END)(\s|$)/'
|
2772
|
+
- !ruby/regexp '/(^|\s)(EO[A-Z]{1}|END)(\s|$)/i'
|
2581
2773
|
|
2582
2774
|
Naming/InclusiveLanguage:
|
2583
2775
|
Description: 'Recommend the use of inclusive language instead of problematic terms.'
|
@@ -2630,11 +2822,11 @@ Naming/MethodName:
|
|
2630
2822
|
- camelCase
|
2631
2823
|
# Method names matching patterns are always allowed.
|
2632
2824
|
#
|
2633
|
-
#
|
2825
|
+
# AllowedPatterns:
|
2634
2826
|
# - '\A\s*onSelectionBulkChange\s*'
|
2635
2827
|
# - '\A\s*onSelectionCleared\s*'
|
2636
2828
|
#
|
2637
|
-
|
2829
|
+
AllowedPatterns: []
|
2638
2830
|
|
2639
2831
|
Naming/MethodParameterName:
|
2640
2832
|
Description: >-
|
@@ -2648,10 +2840,13 @@ Naming/MethodParameterName:
|
|
2648
2840
|
AllowNamesEndingInNumbers: true
|
2649
2841
|
# Allowed names that will not register an offense
|
2650
2842
|
AllowedNames:
|
2843
|
+
- as
|
2651
2844
|
- at
|
2652
2845
|
- by
|
2846
|
+
- cc
|
2653
2847
|
- db
|
2654
2848
|
- id
|
2849
|
+
- if
|
2655
2850
|
- in
|
2656
2851
|
- io
|
2657
2852
|
- ip
|
@@ -2710,6 +2905,7 @@ Naming/VariableName:
|
|
2710
2905
|
- snake_case
|
2711
2906
|
- camelCase
|
2712
2907
|
AllowedIdentifiers: []
|
2908
|
+
AllowedPatterns: []
|
2713
2909
|
|
2714
2910
|
Naming/VariableNumber:
|
2715
2911
|
Description: 'Use the configured style when numbering symbols, methods and variables.'
|
@@ -2731,9 +2927,15 @@ Naming/VariableNumber:
|
|
2731
2927
|
- rfc822 # Time#rfc822
|
2732
2928
|
- rfc2822 # Time#rfc2822
|
2733
2929
|
- rfc3339 # DateTime.rfc3339
|
2930
|
+
AllowedPatterns: []
|
2734
2931
|
|
2735
2932
|
#################### Security ##############################
|
2736
2933
|
|
2934
|
+
Security/CompoundHash:
|
2935
|
+
Description: 'When overwriting Object#hash to combine values, prefer delegating to Array#hash over writing a custom implementation.'
|
2936
|
+
Enabled: pending
|
2937
|
+
VersionAdded: '1.28'
|
2938
|
+
|
2737
2939
|
Security/Eval:
|
2738
2940
|
Description: 'The use of eval represents a serious security risk.'
|
2739
2941
|
Enabled: true
|
@@ -2754,10 +2956,9 @@ Security/JSONLoad:
|
|
2754
2956
|
Reference: 'https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html#method-i-load'
|
2755
2957
|
Enabled: true
|
2756
2958
|
VersionAdded: '0.43'
|
2757
|
-
VersionChanged: '
|
2959
|
+
VersionChanged: '1.22'
|
2758
2960
|
# Autocorrect here will change to a method that may cause crashes depending
|
2759
2961
|
# on the value of the argument.
|
2760
|
-
AutoCorrect: false
|
2761
2962
|
SafeAutoCorrect: false
|
2762
2963
|
|
2763
2964
|
Security/MarshalLoad:
|
@@ -2796,6 +2997,7 @@ Style/AccessModifierDeclarations:
|
|
2796
2997
|
- inline
|
2797
2998
|
- group
|
2798
2999
|
AllowModifiersOnSymbols: true
|
3000
|
+
SafeAutoCorrect: false
|
2799
3001
|
|
2800
3002
|
Style/AccessorGrouping:
|
2801
3003
|
Description: 'Checks for grouping of accessors in `class` and `module` bodies.'
|
@@ -2849,6 +3051,11 @@ Style/ArrayCoercion:
|
|
2849
3051
|
Enabled: false
|
2850
3052
|
VersionAdded: '0.88'
|
2851
3053
|
|
3054
|
+
Style/ArrayIntersect:
|
3055
|
+
Description: 'Use `array1.intersect?(array2)` instead of `(array1 & array2).any?`.'
|
3056
|
+
Enabled: 'pending'
|
3057
|
+
VersionAdded: '1.40'
|
3058
|
+
|
2852
3059
|
Style/ArrayJoin:
|
2853
3060
|
Description: 'Use Array#join instead of Array#*.'
|
2854
3061
|
StyleGuide: '#array-join'
|
@@ -2930,7 +3137,7 @@ Style/BlockDelimiters:
|
|
2930
3137
|
# This looks at the usage of a block's method to determine its type (e.g. is
|
2931
3138
|
# the result of a `map` assigned to a variable or passed to another
|
2932
3139
|
# method) but exceptions are permitted in the `ProceduralMethods`,
|
2933
|
-
# `FunctionalMethods` and `
|
3140
|
+
# `FunctionalMethods` and `AllowedMethods` sections below.
|
2934
3141
|
- semantic
|
2935
3142
|
# The `braces_for_chaining` style enforces braces around single line blocks
|
2936
3143
|
# and do..end around multi-line blocks, except for multi-line blocks whose
|
@@ -2971,7 +3178,7 @@ Style/BlockDelimiters:
|
|
2971
3178
|
- let!
|
2972
3179
|
- subject
|
2973
3180
|
- watch
|
2974
|
-
|
3181
|
+
AllowedMethods:
|
2975
3182
|
# Methods that can be either procedural or functional and cannot be
|
2976
3183
|
# categorised from their usage alone, e.g.
|
2977
3184
|
#
|
@@ -2988,6 +3195,7 @@ Style/BlockDelimiters:
|
|
2988
3195
|
- lambda
|
2989
3196
|
- proc
|
2990
3197
|
- it
|
3198
|
+
AllowedPatterns: []
|
2991
3199
|
# The AllowBracesOnProceduralOneLiners option is ignored unless the
|
2992
3200
|
# EnforcedStyle is set to `semantic`. If so:
|
2993
3201
|
#
|
@@ -3011,7 +3219,7 @@ Style/BlockDelimiters:
|
|
3011
3219
|
# collection.each do |element| puts element end
|
3012
3220
|
AllowBracesOnProceduralOneLiners: false
|
3013
3221
|
# The BracesRequiredMethods overrides all other configurations except
|
3014
|
-
#
|
3222
|
+
# AllowedMethods. It can be used to enforce that all blocks for specific
|
3015
3223
|
# methods use braces. For example, you can use this to enforce Sorbet
|
3016
3224
|
# signatures use braces even when the rest of your codebase enforces
|
3017
3225
|
# the `line_count_based` style.
|
@@ -3032,9 +3240,18 @@ Style/CaseEquality:
|
|
3032
3240
|
# # good
|
3033
3241
|
# String === "string"
|
3034
3242
|
AllowOnConstant: false
|
3243
|
+
# If `AllowOnSelfClass` option is enabled, the cop will ignore violations when the receiver of
|
3244
|
+
# the case equality operator is `self.class`.
|
3245
|
+
#
|
3246
|
+
# # bad
|
3247
|
+
# some_class === object
|
3248
|
+
#
|
3249
|
+
# # good
|
3250
|
+
# self.class === object
|
3251
|
+
AllowOnSelfClass: false
|
3035
3252
|
|
3036
3253
|
Style/CaseLikeIf:
|
3037
|
-
Description: '
|
3254
|
+
Description: 'Identifies places where `if-elsif` constructions can be replaced with `case-when`.'
|
3038
3255
|
StyleGuide: '#case-vs-if-else'
|
3039
3256
|
Enabled: true
|
3040
3257
|
Safe: false
|
@@ -3091,10 +3308,11 @@ Style/ClassEqualityComparison:
|
|
3091
3308
|
StyleGuide: '#instance-of-vs-class-comparison'
|
3092
3309
|
Enabled: true
|
3093
3310
|
VersionAdded: '0.93'
|
3094
|
-
|
3311
|
+
AllowedMethods:
|
3095
3312
|
- ==
|
3096
3313
|
- equal?
|
3097
3314
|
- eql?
|
3315
|
+
AllowedPatterns: []
|
3098
3316
|
|
3099
3317
|
Style/ClassMethods:
|
3100
3318
|
Description: 'Use self when defining module/class methods.'
|
@@ -3108,7 +3326,7 @@ Style/ClassMethodsDefinitions:
|
|
3108
3326
|
StyleGuide: '#def-self-class-methods'
|
3109
3327
|
Enabled: false
|
3110
3328
|
VersionAdded: '0.89'
|
3111
|
-
EnforcedStyle:
|
3329
|
+
EnforcedStyle: def_self
|
3112
3330
|
SupportedStyles:
|
3113
3331
|
- def_self
|
3114
3332
|
- self_class
|
@@ -3215,6 +3433,17 @@ Style/CommentedKeyword:
|
|
3215
3433
|
VersionAdded: '0.51'
|
3216
3434
|
VersionChanged: '1.19'
|
3217
3435
|
|
3436
|
+
Style/ComparableClamp:
|
3437
|
+
Description: 'Enforces the use of `Comparable#clamp` instead of comparison by minimum and maximum.'
|
3438
|
+
Enabled: pending
|
3439
|
+
VersionAdded: '1.44'
|
3440
|
+
|
3441
|
+
Style/ConcatArrayLiterals:
|
3442
|
+
Description: 'Enforces the use of `Array#push(item)` instead of `Array#concat([item])` to avoid redundant array literals.'
|
3443
|
+
Enabled: pending
|
3444
|
+
Safe: false
|
3445
|
+
VersionAdded: '1.41'
|
3446
|
+
|
3218
3447
|
Style/ConditionalAssignment:
|
3219
3448
|
Description: >-
|
3220
3449
|
Use the return value of `if` and `case` statements for
|
@@ -3272,7 +3501,7 @@ Style/Copyright:
|
|
3272
3501
|
|
3273
3502
|
Style/DateTime:
|
3274
3503
|
Description: 'Use Time over DateTime.'
|
3275
|
-
StyleGuide: '#date
|
3504
|
+
StyleGuide: '#date-time'
|
3276
3505
|
Enabled: false
|
3277
3506
|
VersionAdded: '0.51'
|
3278
3507
|
VersionChanged: '0.92'
|
@@ -3381,6 +3610,12 @@ Style/EmptyElse:
|
|
3381
3610
|
- empty
|
3382
3611
|
- nil
|
3383
3612
|
- both
|
3613
|
+
AllowComments: false
|
3614
|
+
|
3615
|
+
Style/EmptyHeredoc:
|
3616
|
+
Description: 'Checks for using empty heredoc to reduce redundancy.'
|
3617
|
+
Enabled: pending
|
3618
|
+
VersionAdded: '1.32'
|
3384
3619
|
|
3385
3620
|
Style/EmptyLambdaParameter:
|
3386
3621
|
Description: 'Omit parens for empty lambda parameters.'
|
@@ -3429,6 +3664,12 @@ Style/EndlessMethod:
|
|
3429
3664
|
- allow_always
|
3430
3665
|
- disallow
|
3431
3666
|
|
3667
|
+
Style/EnvHome:
|
3668
|
+
Description: "Checks for consistent usage of `ENV['HOME']`."
|
3669
|
+
Enabled: pending
|
3670
|
+
Safe: false
|
3671
|
+
VersionAdded: '1.29'
|
3672
|
+
|
3432
3673
|
Style/EvalWithLocation:
|
3433
3674
|
Description: 'Pass `__FILE__` and `__LINE__` to `eval` method, as they are used by backtraces.'
|
3434
3675
|
Enabled: true
|
@@ -3466,6 +3707,28 @@ Style/ExponentialNotation:
|
|
3466
3707
|
- engineering
|
3467
3708
|
- integral
|
3468
3709
|
|
3710
|
+
Style/FetchEnvVar:
|
3711
|
+
Description: >-
|
3712
|
+
Suggests `ENV.fetch` for the replacement of `ENV[]`.
|
3713
|
+
Reference:
|
3714
|
+
- https://rubystyle.guide/#hash-fetch-defaults
|
3715
|
+
Enabled: pending
|
3716
|
+
VersionAdded: '1.28'
|
3717
|
+
# Environment variables to be excluded from the inspection.
|
3718
|
+
AllowedVars: []
|
3719
|
+
|
3720
|
+
Style/FileRead:
|
3721
|
+
Description: 'Favor `File.(bin)read` convenience methods.'
|
3722
|
+
StyleGuide: '#file-read'
|
3723
|
+
Enabled: pending
|
3724
|
+
VersionAdded: '1.24'
|
3725
|
+
|
3726
|
+
Style/FileWrite:
|
3727
|
+
Description: 'Favor `File.(bin)write` convenience methods.'
|
3728
|
+
StyleGuide: '#file-write'
|
3729
|
+
Enabled: pending
|
3730
|
+
VersionAdded: '1.24'
|
3731
|
+
|
3469
3732
|
Style/FloatDivision:
|
3470
3733
|
Description: 'For performing float division, coerce one side only.'
|
3471
3734
|
StyleGuide: '#float-division'
|
@@ -3485,8 +3748,9 @@ Style/For:
|
|
3485
3748
|
Description: 'Checks use of for or each in multiline loops.'
|
3486
3749
|
StyleGuide: '#no-for-loops'
|
3487
3750
|
Enabled: true
|
3751
|
+
SafeAutoCorrect: false
|
3488
3752
|
VersionAdded: '0.13'
|
3489
|
-
VersionChanged: '
|
3753
|
+
VersionChanged: '1.26'
|
3490
3754
|
EnforcedStyle: each
|
3491
3755
|
SupportedStyles:
|
3492
3756
|
- each
|
@@ -3521,7 +3785,8 @@ Style/FormatStringToken:
|
|
3521
3785
|
MaxUnannotatedPlaceholdersAllowed: 1
|
3522
3786
|
VersionAdded: '0.49'
|
3523
3787
|
VersionChanged: '1.0'
|
3524
|
-
|
3788
|
+
AllowedMethods: []
|
3789
|
+
AllowedPatterns: []
|
3525
3790
|
|
3526
3791
|
Style/FrozenStringLiteralComment:
|
3527
3792
|
Description: >-
|
@@ -3566,10 +3831,11 @@ Style/GuardClause:
|
|
3566
3831
|
StyleGuide: '#no-nested-conditionals'
|
3567
3832
|
Enabled: true
|
3568
3833
|
VersionAdded: '0.20'
|
3569
|
-
VersionChanged: '
|
3834
|
+
VersionChanged: '1.31'
|
3570
3835
|
# `MinBodyLength` defines the number of lines of the a body of an `if` or `unless`
|
3571
3836
|
# needs to have to trigger this cop
|
3572
3837
|
MinBodyLength: 1
|
3838
|
+
AllowConsecutiveConditionals: false
|
3573
3839
|
|
3574
3840
|
Style/HashAsLastArrayItem:
|
3575
3841
|
Description: >-
|
@@ -3598,14 +3864,17 @@ Style/HashEachMethods:
|
|
3598
3864
|
Safe: false
|
3599
3865
|
VersionAdded: '0.80'
|
3600
3866
|
VersionChanged: '1.16'
|
3601
|
-
AllowedReceivers:
|
3867
|
+
AllowedReceivers:
|
3868
|
+
- Thread.current
|
3602
3869
|
|
3603
3870
|
Style/HashExcept:
|
3604
3871
|
Description: >-
|
3605
3872
|
Checks for usages of `Hash#reject`, `Hash#select`, and `Hash#filter` methods
|
3606
3873
|
that can be replaced with `Hash#except` method.
|
3607
3874
|
Enabled: pending
|
3875
|
+
Safe: false
|
3608
3876
|
VersionAdded: '1.7'
|
3877
|
+
VersionChanged: '1.39'
|
3609
3878
|
|
3610
3879
|
Style/HashLikeCase:
|
3611
3880
|
Description: >-
|
@@ -3624,7 +3893,7 @@ Style/HashSyntax:
|
|
3624
3893
|
StyleGuide: '#hash-literals'
|
3625
3894
|
Enabled: true
|
3626
3895
|
VersionAdded: '0.9'
|
3627
|
-
VersionChanged: '
|
3896
|
+
VersionChanged: '1.24'
|
3628
3897
|
EnforcedStyle: ruby19
|
3629
3898
|
SupportedStyles:
|
3630
3899
|
# checks for 1.9 syntax (e.g. {a: 1}) for all symbol keys
|
@@ -3635,6 +3904,17 @@ Style/HashSyntax:
|
|
3635
3904
|
- no_mixed_keys
|
3636
3905
|
# enforces both ruby19 and no_mixed_keys styles
|
3637
3906
|
- ruby19_no_mixed_keys
|
3907
|
+
# Force hashes that have a hash value omission
|
3908
|
+
EnforcedShorthandSyntax: always
|
3909
|
+
SupportedShorthandSyntax:
|
3910
|
+
# forces use of the 3.1 syntax (e.g. {foo:}) when the hash key and value are the same.
|
3911
|
+
- always
|
3912
|
+
# forces use of explicit hash literal value.
|
3913
|
+
- never
|
3914
|
+
# accepts both shorthand and explicit use of hash literal value.
|
3915
|
+
- either
|
3916
|
+
# forces use of the 3.1 syntax only if all values can be omitted in the hash.
|
3917
|
+
- consistent
|
3638
3918
|
# Force hashes that have a symbol value to use hash rockets
|
3639
3919
|
UseHashRocketsWithSymbolValues: false
|
3640
3920
|
# Do not suggest { a?: 1 } over { :a? => 1 } in ruby19 style
|
@@ -3749,14 +4029,43 @@ Style/InverseMethods:
|
|
3749
4029
|
:>: :<=
|
3750
4030
|
# `ActiveSupport` defines some common inverse methods. They are listed below,
|
3751
4031
|
# and not enabled by default.
|
3752
|
-
|
3753
|
-
|
4032
|
+
# :present?: :blank?,
|
4033
|
+
# :include?: :exclude?
|
3754
4034
|
# `InverseBlocks` are methods that are inverted by inverting the return
|
3755
4035
|
# of the block that is passed to the method
|
3756
4036
|
InverseBlocks:
|
3757
4037
|
:select: :reject
|
3758
4038
|
:select!: :reject!
|
3759
4039
|
|
4040
|
+
Style/InvertibleUnlessCondition:
|
4041
|
+
Description: 'Favor `if` with inverted condition over `unless`.'
|
4042
|
+
Enabled: false
|
4043
|
+
VersionAdded: '1.44'
|
4044
|
+
# `InverseMethods` are methods that can be inverted in a `unless` condition.
|
4045
|
+
# The relationship of inverse methods needs to be defined in both directions.
|
4046
|
+
# Keys and values both need to be defined as symbols.
|
4047
|
+
InverseMethods:
|
4048
|
+
:!=: :==
|
4049
|
+
:>: :<=
|
4050
|
+
:<=: :>
|
4051
|
+
:<: :>=
|
4052
|
+
:>=: :<
|
4053
|
+
:!~: :=~
|
4054
|
+
:zero?: :nonzero?
|
4055
|
+
:nonzero?: :zero?
|
4056
|
+
:any?: :none?
|
4057
|
+
:none?: :any?
|
4058
|
+
:even?: :odd?
|
4059
|
+
:odd?: :even?
|
4060
|
+
# `ActiveSupport` defines some common inverse methods. They are listed below,
|
4061
|
+
# and not enabled by default.
|
4062
|
+
# :present?: :blank?
|
4063
|
+
# :blank?: :present?
|
4064
|
+
# :include?: :exclude?
|
4065
|
+
# :exclude?: :include?
|
4066
|
+
# :one?: :many?
|
4067
|
+
# :many?: :one?
|
4068
|
+
|
3760
4069
|
Style/IpAddresses:
|
3761
4070
|
Description: "Don't include literal IP addresses in code."
|
3762
4071
|
Enabled: false
|
@@ -3811,6 +4120,43 @@ Style/LineEndConcatenation:
|
|
3811
4120
|
VersionAdded: '0.18'
|
3812
4121
|
VersionChanged: '0.64'
|
3813
4122
|
|
4123
|
+
Style/MagicCommentFormat:
|
4124
|
+
Description: 'Use a consistent style for magic comments.'
|
4125
|
+
Enabled: pending
|
4126
|
+
VersionAdded: '1.35'
|
4127
|
+
EnforcedStyle: snake_case
|
4128
|
+
SupportedStyles:
|
4129
|
+
# `snake` will enforce the magic comment is written
|
4130
|
+
# in snake case (words separated by underscores).
|
4131
|
+
# Eg: froze_string_literal: true
|
4132
|
+
- snake_case
|
4133
|
+
# `kebab` will enforce the magic comment is written
|
4134
|
+
# in kebab case (words separated by hyphens).
|
4135
|
+
# Eg: froze-string-literal: true
|
4136
|
+
- kebab_case
|
4137
|
+
DirectiveCapitalization: lowercase
|
4138
|
+
ValueCapitalization: ~
|
4139
|
+
SupportedCapitalizations:
|
4140
|
+
- lowercase
|
4141
|
+
- uppercase
|
4142
|
+
|
4143
|
+
Style/MapCompactWithConditionalBlock:
|
4144
|
+
Description: 'Prefer `select` or `reject` over `map { ... }.compact`.'
|
4145
|
+
Enabled: pending
|
4146
|
+
VersionAdded: '1.30'
|
4147
|
+
|
4148
|
+
Style/MapToHash:
|
4149
|
+
Description: 'Prefer `to_h` with a block over `map.to_h`.'
|
4150
|
+
Enabled: pending
|
4151
|
+
VersionAdded: '1.24'
|
4152
|
+
Safe: false
|
4153
|
+
|
4154
|
+
Style/MapToSet:
|
4155
|
+
Description: 'Prefer `to_set` with a block over `map.to_set`.'
|
4156
|
+
Enabled: pending
|
4157
|
+
Safe: false
|
4158
|
+
VersionAdded: '1.42'
|
4159
|
+
|
3814
4160
|
Style/MethodCallWithArgsParentheses:
|
3815
4161
|
Description: 'Use parentheses for method calls with arguments.'
|
3816
4162
|
StyleGuide: '#method-invocation-parens'
|
@@ -3818,8 +4164,8 @@ Style/MethodCallWithArgsParentheses:
|
|
3818
4164
|
VersionAdded: '0.47'
|
3819
4165
|
VersionChanged: '1.7'
|
3820
4166
|
IgnoreMacros: true
|
3821
|
-
|
3822
|
-
|
4167
|
+
AllowedMethods: []
|
4168
|
+
AllowedPatterns: []
|
3823
4169
|
IncludedMacros: []
|
3824
4170
|
AllowParenthesesInMultilineCall: false
|
3825
4171
|
AllowParenthesesInChaining: false
|
@@ -3834,7 +4180,8 @@ Style/MethodCallWithoutArgsParentheses:
|
|
3834
4180
|
Description: 'Do not use parentheses for method calls with no arguments.'
|
3835
4181
|
StyleGuide: '#method-invocation-parens'
|
3836
4182
|
Enabled: true
|
3837
|
-
|
4183
|
+
AllowedMethods: []
|
4184
|
+
AllowedPatterns: []
|
3838
4185
|
VersionAdded: '0.47'
|
3839
4186
|
VersionChanged: '0.55'
|
3840
4187
|
|
@@ -3865,6 +4212,12 @@ Style/MinMax:
|
|
3865
4212
|
Enabled: true
|
3866
4213
|
VersionAdded: '0.50'
|
3867
4214
|
|
4215
|
+
Style/MinMaxComparison:
|
4216
|
+
Description: 'Enforces the use of `max` or `min` instead of comparison for greater or less.'
|
4217
|
+
Enabled: pending
|
4218
|
+
Safe: false
|
4219
|
+
VersionAdded: '1.42'
|
4220
|
+
|
3868
4221
|
Style/MissingElse:
|
3869
4222
|
Description: >-
|
3870
4223
|
Require if/case expressions to have an else branches.
|
@@ -4025,7 +4378,7 @@ Style/NegatedIf:
|
|
4025
4378
|
|
4026
4379
|
Style/NegatedIfElseCondition:
|
4027
4380
|
Description: >-
|
4028
|
-
|
4381
|
+
Checks for uses of `if-else` and ternary operators with a negated condition
|
4029
4382
|
which can be simplified by inverting condition and swapping branches.
|
4030
4383
|
Enabled: pending
|
4031
4384
|
VersionAdded: '1.2'
|
@@ -4050,6 +4403,11 @@ Style/NegatedWhile:
|
|
4050
4403
|
Enabled: true
|
4051
4404
|
VersionAdded: '0.20'
|
4052
4405
|
|
4406
|
+
Style/NestedFileDirname:
|
4407
|
+
Description: 'Checks for nested `File.dirname`.'
|
4408
|
+
Enabled: pending
|
4409
|
+
VersionAdded: '1.26'
|
4410
|
+
|
4053
4411
|
Style/NestedModifier:
|
4054
4412
|
Description: 'Avoid using nested modifiers.'
|
4055
4413
|
StyleGuide: '#no-nested-modifiers'
|
@@ -4179,6 +4537,9 @@ Style/NumericLiterals:
|
|
4179
4537
|
VersionChanged: '0.48'
|
4180
4538
|
MinDigits: 5
|
4181
4539
|
Strict: false
|
4540
|
+
# You can specify allowed numbers. (e.g. port number 3000, 8080, and etc)
|
4541
|
+
AllowedNumbers: []
|
4542
|
+
AllowedPatterns: []
|
4182
4543
|
|
4183
4544
|
Style/NumericPredicate:
|
4184
4545
|
Description: >-
|
@@ -4197,12 +4558,26 @@ Style/NumericPredicate:
|
|
4197
4558
|
SupportedStyles:
|
4198
4559
|
- predicate
|
4199
4560
|
- comparison
|
4200
|
-
|
4561
|
+
AllowedMethods: []
|
4562
|
+
AllowedPatterns: []
|
4201
4563
|
# Exclude RSpec specs because assertions like `expect(1).to be > 0` cause
|
4202
4564
|
# false positives.
|
4203
4565
|
Exclude:
|
4204
4566
|
- 'spec/**/*'
|
4205
4567
|
|
4568
|
+
Style/ObjectThen:
|
4569
|
+
Description: 'Enforces the use of consistent method names `Object#yield_self` or `Object#then`.'
|
4570
|
+
StyleGuide: '#object-yield-self-vs-object-then'
|
4571
|
+
Enabled: pending
|
4572
|
+
VersionAdded: '1.28'
|
4573
|
+
# Use `Object#yield_self` or `Object#then`?
|
4574
|
+
# Prefer `Object#yield_self` to `Object#then` (yield_self)
|
4575
|
+
# Prefer `Object#then` to `Object#yield_self` (then)
|
4576
|
+
EnforcedStyle: 'then'
|
4577
|
+
SupportedStyles:
|
4578
|
+
- then
|
4579
|
+
- yield_self
|
4580
|
+
|
4206
4581
|
Style/OneLineConditional:
|
4207
4582
|
Description: >-
|
4208
4583
|
Favor the ternary operator (?:) or multi-line constructs over
|
@@ -4213,6 +4588,22 @@ Style/OneLineConditional:
|
|
4213
4588
|
VersionAdded: '0.9'
|
4214
4589
|
VersionChanged: '0.90'
|
4215
4590
|
|
4591
|
+
Style/OpenStructUse:
|
4592
|
+
Description: >-
|
4593
|
+
Avoid using OpenStruct. As of Ruby 3.0, use is officially discouraged due to performance,
|
4594
|
+
version compatibility, and potential security issues.
|
4595
|
+
Reference:
|
4596
|
+
- https://docs.ruby-lang.org/en/3.0.0/OpenStruct.html#class-OpenStruct-label-Caveats
|
4597
|
+
|
4598
|
+
Enabled: pending
|
4599
|
+
VersionAdded: '1.23'
|
4600
|
+
|
4601
|
+
Style/OperatorMethodCall:
|
4602
|
+
Description: 'Checks for redundant dot before operator method call.'
|
4603
|
+
StyleGuide: '#operator-method-call'
|
4604
|
+
Enabled: pending
|
4605
|
+
VersionAdded: '1.37'
|
4606
|
+
|
4216
4607
|
Style/OptionHash:
|
4217
4608
|
Description: "Don't use option hashes when you can use keyword arguments."
|
4218
4609
|
Enabled: false
|
@@ -4358,10 +4749,12 @@ Style/RedundantArgument:
|
|
4358
4749
|
Enabled: pending
|
4359
4750
|
Safe: false
|
4360
4751
|
VersionAdded: '1.4'
|
4361
|
-
VersionChanged: '1.
|
4752
|
+
VersionChanged: '1.40'
|
4362
4753
|
Methods:
|
4363
4754
|
# Array#join
|
4364
4755
|
join: ''
|
4756
|
+
# Array#sum
|
4757
|
+
sum: 0
|
4365
4758
|
# String#split
|
4366
4759
|
split: ' '
|
4367
4760
|
# String#chomp
|
@@ -4396,6 +4789,22 @@ Style/RedundantConditional:
|
|
4396
4789
|
Enabled: true
|
4397
4790
|
VersionAdded: '0.50'
|
4398
4791
|
|
4792
|
+
Style/RedundantConstantBase:
|
4793
|
+
Description: Avoid redundant `::` prefix on constant.
|
4794
|
+
Enabled: pending
|
4795
|
+
VersionAdded: '1.40'
|
4796
|
+
|
4797
|
+
Style/RedundantDoubleSplatHashBraces:
|
4798
|
+
Description: 'Checks for redundant uses of double splat hash braces.'
|
4799
|
+
Enabled: pending
|
4800
|
+
VersionAdded: '1.41'
|
4801
|
+
|
4802
|
+
Style/RedundantEach:
|
4803
|
+
Description: 'Checks for redundant `each`.'
|
4804
|
+
Enabled: pending
|
4805
|
+
Safe: false
|
4806
|
+
VersionAdded: '1.38'
|
4807
|
+
|
4399
4808
|
Style/RedundantException:
|
4400
4809
|
Description: "Checks for an obsolete RuntimeException argument in raise/fail."
|
4401
4810
|
StyleGuide: '#no-explicit-runtimeerror'
|
@@ -4430,10 +4839,25 @@ Style/RedundantFreeze:
|
|
4430
4839
|
VersionAdded: '0.34'
|
4431
4840
|
VersionChanged: '0.66'
|
4432
4841
|
|
4842
|
+
Style/RedundantHeredocDelimiterQuotes:
|
4843
|
+
Description: 'Checks for redundant heredoc delimiter quotes.'
|
4844
|
+
Enabled: pending
|
4845
|
+
VersionAdded: '1.45'
|
4846
|
+
|
4847
|
+
Style/RedundantInitialize:
|
4848
|
+
Description: 'Checks for redundant `initialize` methods.'
|
4849
|
+
Enabled: pending
|
4850
|
+
Safe: false
|
4851
|
+
AllowComments: true
|
4852
|
+
VersionAdded: '1.27'
|
4853
|
+
VersionChanged: '1.28'
|
4854
|
+
|
4433
4855
|
Style/RedundantInterpolation:
|
4434
4856
|
Description: 'Checks for strings that are just an interpolated expression.'
|
4435
4857
|
Enabled: true
|
4858
|
+
SafeAutoCorrect: false
|
4436
4859
|
VersionAdded: '0.76'
|
4860
|
+
VersionChanged: '1.30'
|
4437
4861
|
|
4438
4862
|
Style/RedundantParentheses:
|
4439
4863
|
Description: "Checks for parentheses that seem not to serve any purpose."
|
@@ -4497,6 +4921,11 @@ Style/RedundantSortBy:
|
|
4497
4921
|
Enabled: true
|
4498
4922
|
VersionAdded: '0.36'
|
4499
4923
|
|
4924
|
+
Style/RedundantStringEscape:
|
4925
|
+
Description: 'Checks for redundant escapes in string literals.'
|
4926
|
+
Enabled: pending
|
4927
|
+
VersionAdded: '1.37'
|
4928
|
+
|
4500
4929
|
Style/RegexpLiteral:
|
4501
4930
|
Description: 'Use / or %r around regular expressions.'
|
4502
4931
|
StyleGuide: '#percent-r'
|
@@ -4515,6 +4944,12 @@ Style/RegexpLiteral:
|
|
4515
4944
|
# are found in the regexp string.
|
4516
4945
|
AllowInnerSlashes: false
|
4517
4946
|
|
4947
|
+
Style/RequireOrder:
|
4948
|
+
Description: Sort `require` and `require_relative` in alphabetical order.
|
4949
|
+
Enabled: false
|
4950
|
+
SafeAutoCorrect: false
|
4951
|
+
VersionAdded: '1.40'
|
4952
|
+
|
4518
4953
|
Style/RescueModifier:
|
4519
4954
|
Description: 'Avoid using rescue in its modifier form.'
|
4520
4955
|
StyleGuide: '#no-rescue-modifiers'
|
@@ -4544,14 +4979,14 @@ Style/ReturnNil:
|
|
4544
4979
|
|
4545
4980
|
Style/SafeNavigation:
|
4546
4981
|
Description: >-
|
4547
|
-
|
4982
|
+
Transforms usages of a method call safeguarded by
|
4548
4983
|
a check for the existence of the object to
|
4549
4984
|
safe navigation (`&.`).
|
4550
|
-
|
4985
|
+
Autocorrection is unsafe as it assumes the object will
|
4551
4986
|
be `nil` or truthy, but never `false`.
|
4552
4987
|
Enabled: true
|
4553
4988
|
VersionAdded: '0.43'
|
4554
|
-
VersionChanged: '
|
4989
|
+
VersionChanged: '1.27'
|
4555
4990
|
# Safe navigation may cause a statement to start returning `nil` in addition
|
4556
4991
|
# to whatever it used to return.
|
4557
4992
|
ConvertCodeThatCanStartToReturnNil: false
|
@@ -4562,6 +4997,8 @@ Style/SafeNavigation:
|
|
4562
4997
|
- try
|
4563
4998
|
- try!
|
4564
4999
|
SafeAutoCorrect: false
|
5000
|
+
# Maximum length of method chains for register an offense.
|
5001
|
+
MaxChainLength: 2
|
4565
5002
|
|
4566
5003
|
Style/Sample:
|
4567
5004
|
Description: >-
|
@@ -4667,6 +5104,7 @@ Style/SpecialGlobalVars:
|
|
4667
5104
|
SupportedStyles:
|
4668
5105
|
- use_perl_names
|
4669
5106
|
- use_english_names
|
5107
|
+
- use_builtin_english_names
|
4670
5108
|
|
4671
5109
|
Style/StabbyLambdaParentheses:
|
4672
5110
|
Description: 'Check for the usage of parentheses around stabby lambda arguments.'
|
@@ -4768,7 +5206,7 @@ Style/StructInheritance:
|
|
4768
5206
|
VersionChanged: '1.20'
|
4769
5207
|
|
4770
5208
|
Style/SwapValues:
|
4771
|
-
Description: '
|
5209
|
+
Description: 'Enforces the use of shorthand-style swapping of 2 variables.'
|
4772
5210
|
StyleGuide: '#values-swapping'
|
4773
5211
|
Enabled: pending
|
4774
5212
|
VersionAdded: '1.1'
|
@@ -4796,13 +5234,14 @@ Style/SymbolProc:
|
|
4796
5234
|
Enabled: true
|
4797
5235
|
Safe: false
|
4798
5236
|
VersionAdded: '0.26'
|
4799
|
-
VersionChanged: '1.
|
5237
|
+
VersionChanged: '1.40'
|
4800
5238
|
AllowMethodsWithArguments: false
|
4801
|
-
# A list of method names to be
|
5239
|
+
# A list of method names to be always allowed by the check.
|
4802
5240
|
# The names should be fairly unique, otherwise you'll end up ignoring lots of code.
|
4803
|
-
|
4804
|
-
- respond_to
|
5241
|
+
AllowedMethods:
|
4805
5242
|
- define_method
|
5243
|
+
AllowedPatterns: []
|
5244
|
+
AllowComments: false
|
4806
5245
|
|
4807
5246
|
Style/TernaryParentheses:
|
4808
5247
|
Description: 'Checks for use of parentheses around ternary conditions.'
|
@@ -4817,7 +5256,7 @@ Style/TernaryParentheses:
|
|
4817
5256
|
AllowSafeAssignment: true
|
4818
5257
|
|
4819
5258
|
Style/TopLevelMethodDefinition:
|
4820
|
-
Description: '
|
5259
|
+
Description: 'Looks for top-level method definitions.'
|
4821
5260
|
StyleGuide: '#top-level-methods'
|
4822
5261
|
Enabled: false
|
4823
5262
|
VersionAdded: '1.15'
|
@@ -5040,6 +5479,19 @@ Style/YodaCondition:
|
|
5040
5479
|
VersionAdded: '0.49'
|
5041
5480
|
VersionChanged: '0.75'
|
5042
5481
|
|
5482
|
+
Style/YodaExpression:
|
5483
|
+
Description: 'Forbid the use of yoda expressions.'
|
5484
|
+
Enabled: false
|
5485
|
+
Safe: false
|
5486
|
+
VersionAdded: '1.42'
|
5487
|
+
VersionChanged: '1.43'
|
5488
|
+
SupportedOperators:
|
5489
|
+
- '*'
|
5490
|
+
- '+'
|
5491
|
+
- '&'
|
5492
|
+
- '|'
|
5493
|
+
- '^'
|
5494
|
+
|
5043
5495
|
Style/ZeroLengthPredicate:
|
5044
5496
|
Description: 'Use #empty? when testing for objects of length 0.'
|
5045
5497
|
Enabled: true
|