rubbycop 0.49.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +211 -0
- data/assets/logo.png +0 -0
- data/assets/output.html.erb +261 -0
- data/bin/rubbycop +17 -0
- data/config/default.yml +1548 -0
- data/config/disabled.yml +119 -0
- data/config/enabled.yml +1734 -0
- data/lib/rubbycop.rb +510 -0
- data/lib/rubbycop/ast/builder.rb +64 -0
- data/lib/rubbycop/ast/node.rb +610 -0
- data/lib/rubbycop/ast/node/and_node.rb +37 -0
- data/lib/rubbycop/ast/node/array_node.rb +48 -0
- data/lib/rubbycop/ast/node/case_node.rb +64 -0
- data/lib/rubbycop/ast/node/ensure_node.rb +25 -0
- data/lib/rubbycop/ast/node/for_node.rb +53 -0
- data/lib/rubbycop/ast/node/hash_node.rb +109 -0
- data/lib/rubbycop/ast/node/if_node.rb +138 -0
- data/lib/rubbycop/ast/node/keyword_splat_node.rb +45 -0
- data/lib/rubbycop/ast/node/mixin/binary_operator_node.rb +23 -0
- data/lib/rubbycop/ast/node/mixin/conditional_node.rb +45 -0
- data/lib/rubbycop/ast/node/mixin/hash_element_node.rb +125 -0
- data/lib/rubbycop/ast/node/mixin/modifier_node.rb +17 -0
- data/lib/rubbycop/ast/node/mixin/predicate_operator_node.rb +35 -0
- data/lib/rubbycop/ast/node/or_node.rb +37 -0
- data/lib/rubbycop/ast/node/pair_node.rb +64 -0
- data/lib/rubbycop/ast/node/resbody_node.rb +25 -0
- data/lib/rubbycop/ast/node/send_node.rb +209 -0
- data/lib/rubbycop/ast/node/until_node.rb +43 -0
- data/lib/rubbycop/ast/node/when_node.rb +61 -0
- data/lib/rubbycop/ast/node/while_node.rb +43 -0
- data/lib/rubbycop/ast/sexp.rb +16 -0
- data/lib/rubbycop/ast/traversal.rb +171 -0
- data/lib/rubbycop/cached_data.rb +63 -0
- data/lib/rubbycop/cli.rb +199 -0
- data/lib/rubbycop/comment_config.rb +155 -0
- data/lib/rubbycop/config.rb +444 -0
- data/lib/rubbycop/config_loader.rb +244 -0
- data/lib/rubbycop/config_loader_resolver.rb +43 -0
- data/lib/rubbycop/config_store.rb +48 -0
- data/lib/rubbycop/cop/autocorrect_logic.rb +26 -0
- data/lib/rubbycop/cop/badge.rb +73 -0
- data/lib/rubbycop/cop/bundler/duplicated_gem.rb +69 -0
- data/lib/rubbycop/cop/bundler/ordered_gems.rb +113 -0
- data/lib/rubbycop/cop/commissioner.rb +118 -0
- data/lib/rubbycop/cop/cop.rb +222 -0
- data/lib/rubbycop/cop/corrector.rb +135 -0
- data/lib/rubbycop/cop/force.rb +41 -0
- data/lib/rubbycop/cop/ignored_node.rb +38 -0
- data/lib/rubbycop/cop/layout/access_modifier_indentation.rb +109 -0
- data/lib/rubbycop/cop/layout/align_array.rb +35 -0
- data/lib/rubbycop/cop/layout/align_hash.rb +235 -0
- data/lib/rubbycop/cop/layout/align_parameters.rb +97 -0
- data/lib/rubbycop/cop/layout/block_end_newline.rb +56 -0
- data/lib/rubbycop/cop/layout/case_indentation.rb +163 -0
- data/lib/rubbycop/cop/layout/closing_parenthesis_indentation.rb +88 -0
- data/lib/rubbycop/cop/layout/comment_indentation.rb +71 -0
- data/lib/rubbycop/cop/layout/dot_position.rb +84 -0
- data/lib/rubbycop/cop/layout/else_alignment.rb +105 -0
- data/lib/rubbycop/cop/layout/empty_line_after_magic_comment.rb +63 -0
- data/lib/rubbycop/cop/layout/empty_line_between_defs.rb +143 -0
- data/lib/rubbycop/cop/layout/empty_lines.rb +60 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_access_modifier.rb +90 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_begin_body.rb +42 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_block_body.rb +41 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_class_body.rb +39 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_exception_handling_keywords.rb +127 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_method_body.rb +41 -0
- data/lib/rubbycop/cop/layout/empty_lines_around_module_body.rb +44 -0
- data/lib/rubbycop/cop/layout/end_of_line.rb +52 -0
- data/lib/rubbycop/cop/layout/extra_spacing.rb +237 -0
- data/lib/rubbycop/cop/layout/first_array_element_line_break.rb +41 -0
- data/lib/rubbycop/cop/layout/first_hash_element_line_break.rb +33 -0
- data/lib/rubbycop/cop/layout/first_method_argument_line_break.rb +49 -0
- data/lib/rubbycop/cop/layout/first_method_parameter_line_break.rb +42 -0
- data/lib/rubbycop/cop/layout/first_parameter_indentation.rb +109 -0
- data/lib/rubbycop/cop/layout/indent_array.rb +114 -0
- data/lib/rubbycop/cop/layout/indent_assignment.rb +42 -0
- data/lib/rubbycop/cop/layout/indent_hash.rb +134 -0
- data/lib/rubbycop/cop/layout/indent_heredoc.rb +173 -0
- data/lib/rubbycop/cop/layout/indentation_consistency.rb +51 -0
- data/lib/rubbycop/cop/layout/indentation_width.rb +303 -0
- data/lib/rubbycop/cop/layout/initial_indentation.rb +42 -0
- data/lib/rubbycop/cop/layout/leading_comment_space.rb +43 -0
- data/lib/rubbycop/cop/layout/multiline_array_brace_layout.rb +81 -0
- data/lib/rubbycop/cop/layout/multiline_assignment_layout.rb +88 -0
- data/lib/rubbycop/cop/layout/multiline_block_layout.rb +134 -0
- data/lib/rubbycop/cop/layout/multiline_hash_brace_layout.rb +81 -0
- data/lib/rubbycop/cop/layout/multiline_method_call_brace_layout.rb +97 -0
- data/lib/rubbycop/cop/layout/multiline_method_call_indentation.rb +215 -0
- data/lib/rubbycop/cop/layout/multiline_method_definition_brace_layout.rb +82 -0
- data/lib/rubbycop/cop/layout/multiline_operation_indentation.rb +89 -0
- data/lib/rubbycop/cop/layout/rescue_ensure_alignment.rb +86 -0
- data/lib/rubbycop/cop/layout/space_after_colon.rb +40 -0
- data/lib/rubbycop/cop/layout/space_after_comma.rb +21 -0
- data/lib/rubbycop/cop/layout/space_after_method_name.rb +37 -0
- data/lib/rubbycop/cop/layout/space_after_not.rb +38 -0
- data/lib/rubbycop/cop/layout/space_after_semicolon.rb +21 -0
- data/lib/rubbycop/cop/layout/space_around_block_parameters.rb +109 -0
- data/lib/rubbycop/cop/layout/space_around_equals_in_parameter_default.rb +68 -0
- data/lib/rubbycop/cop/layout/space_around_keyword.rb +224 -0
- data/lib/rubbycop/cop/layout/space_around_operators.rb +142 -0
- data/lib/rubbycop/cop/layout/space_before_block_braces.rb +54 -0
- data/lib/rubbycop/cop/layout/space_before_comma.rb +16 -0
- data/lib/rubbycop/cop/layout/space_before_comment.rb +27 -0
- data/lib/rubbycop/cop/layout/space_before_first_arg.rb +64 -0
- data/lib/rubbycop/cop/layout/space_before_semicolon.rb +16 -0
- data/lib/rubbycop/cop/layout/space_in_lambda_literal.rb +87 -0
- data/lib/rubbycop/cop/layout/space_inside_array_percent_literal.rb +53 -0
- data/lib/rubbycop/cop/layout/space_inside_block_braces.rb +158 -0
- data/lib/rubbycop/cop/layout/space_inside_brackets.rb +20 -0
- data/lib/rubbycop/cop/layout/space_inside_hash_literal_braces.rb +150 -0
- data/lib/rubbycop/cop/layout/space_inside_parens.rb +16 -0
- data/lib/rubbycop/cop/layout/space_inside_percent_literal_delimiters.rb +64 -0
- data/lib/rubbycop/cop/layout/space_inside_range_literal.rb +63 -0
- data/lib/rubbycop/cop/layout/space_inside_string_interpolation.rb +65 -0
- data/lib/rubbycop/cop/layout/tab.rb +57 -0
- data/lib/rubbycop/cop/layout/trailing_blank_lines.rb +78 -0
- data/lib/rubbycop/cop/layout/trailing_whitespace.rb +28 -0
- data/lib/rubbycop/cop/lint/ambiguous_block_association.rb +66 -0
- data/lib/rubbycop/cop/lint/ambiguous_operator.rb +55 -0
- data/lib/rubbycop/cop/lint/ambiguous_regexp_literal.rb +43 -0
- data/lib/rubbycop/cop/lint/assignment_in_condition.rb +80 -0
- data/lib/rubbycop/cop/lint/block_alignment.rb +229 -0
- data/lib/rubbycop/cop/lint/circular_argument_reference.rb +83 -0
- data/lib/rubbycop/cop/lint/condition_position.rb +52 -0
- data/lib/rubbycop/cop/lint/debugger.rb +72 -0
- data/lib/rubbycop/cop/lint/def_end_alignment.rb +78 -0
- data/lib/rubbycop/cop/lint/deprecated_class_methods.rb +90 -0
- data/lib/rubbycop/cop/lint/duplicate_case_condition.rb +53 -0
- data/lib/rubbycop/cop/lint/duplicate_methods.rb +151 -0
- data/lib/rubbycop/cop/lint/duplicated_key.rb +38 -0
- data/lib/rubbycop/cop/lint/each_with_object_argument.rb +39 -0
- data/lib/rubbycop/cop/lint/else_layout.rb +65 -0
- data/lib/rubbycop/cop/lint/empty_ensure.rb +60 -0
- data/lib/rubbycop/cop/lint/empty_expression.rb +42 -0
- data/lib/rubbycop/cop/lint/empty_interpolation.rb +36 -0
- data/lib/rubbycop/cop/lint/empty_when.rb +38 -0
- data/lib/rubbycop/cop/lint/end_alignment.rb +157 -0
- data/lib/rubbycop/cop/lint/end_in_method.rb +40 -0
- data/lib/rubbycop/cop/lint/ensure_return.rb +43 -0
- data/lib/rubbycop/cop/lint/float_out_of_range.rb +35 -0
- data/lib/rubbycop/cop/lint/format_parameter_mismatch.rb +182 -0
- data/lib/rubbycop/cop/lint/handle_exceptions.rb +56 -0
- data/lib/rubbycop/cop/lint/implicit_string_concatenation.rb +95 -0
- data/lib/rubbycop/cop/lint/ineffective_access_modifier.rb +143 -0
- data/lib/rubbycop/cop/lint/inherit_exception.rb +83 -0
- data/lib/rubbycop/cop/lint/invalid_character_literal.rb +41 -0
- data/lib/rubbycop/cop/lint/literal_in_condition.rb +127 -0
- data/lib/rubbycop/cop/lint/literal_in_interpolation.rb +76 -0
- data/lib/rubbycop/cop/lint/loop.rb +63 -0
- data/lib/rubbycop/cop/lint/multiple_compare.rb +48 -0
- data/lib/rubbycop/cop/lint/nested_method_definition.rb +105 -0
- data/lib/rubbycop/cop/lint/next_without_accumulator.rb +50 -0
- data/lib/rubbycop/cop/lint/non_local_exit_from_iterator.rb +85 -0
- data/lib/rubbycop/cop/lint/parentheses_as_grouped_expression.rb +60 -0
- data/lib/rubbycop/cop/lint/percent_string_array.rb +84 -0
- data/lib/rubbycop/cop/lint/percent_symbol_array.rb +66 -0
- data/lib/rubbycop/cop/lint/rand_one.rb +39 -0
- data/lib/rubbycop/cop/lint/require_parentheses.rb +61 -0
- data/lib/rubbycop/cop/lint/rescue_exception.rb +45 -0
- data/lib/rubbycop/cop/lint/safe_navigation_chain.rb +70 -0
- data/lib/rubbycop/cop/lint/shadowed_exception.rb +132 -0
- data/lib/rubbycop/cop/lint/shadowing_outer_local_variable.rb +53 -0
- data/lib/rubbycop/cop/lint/string_conversion_in_interpolation.rb +58 -0
- data/lib/rubbycop/cop/lint/syntax.rb +55 -0
- data/lib/rubbycop/cop/lint/underscore_prefixed_variable_name.rb +62 -0
- data/lib/rubbycop/cop/lint/unified_integer.rb +42 -0
- data/lib/rubbycop/cop/lint/unneeded_disable.rb +231 -0
- data/lib/rubbycop/cop/lint/unneeded_splat_expansion.rb +141 -0
- data/lib/rubbycop/cop/lint/unreachable_code.rb +52 -0
- data/lib/rubbycop/cop/lint/unused_block_argument.rb +145 -0
- data/lib/rubbycop/cop/lint/unused_method_argument.rb +61 -0
- data/lib/rubbycop/cop/lint/useless_access_modifier.rb +229 -0
- data/lib/rubbycop/cop/lint/useless_assignment.rb +132 -0
- data/lib/rubbycop/cop/lint/useless_comparison.rb +28 -0
- data/lib/rubbycop/cop/lint/useless_else_without_rescue.rb +46 -0
- data/lib/rubbycop/cop/lint/useless_setter_call.rb +162 -0
- data/lib/rubbycop/cop/lint/void.rb +108 -0
- data/lib/rubbycop/cop/message_annotator.rb +116 -0
- data/lib/rubbycop/cop/metrics/abc_size.rb +39 -0
- data/lib/rubbycop/cop/metrics/block_length.rb +32 -0
- data/lib/rubbycop/cop/metrics/block_nesting.rb +64 -0
- data/lib/rubbycop/cop/metrics/class_length.rb +24 -0
- data/lib/rubbycop/cop/metrics/cyclomatic_complexity.rb +31 -0
- data/lib/rubbycop/cop/metrics/line_length.rb +168 -0
- data/lib/rubbycop/cop/metrics/method_length.rb +27 -0
- data/lib/rubbycop/cop/metrics/module_length.rb +24 -0
- data/lib/rubbycop/cop/metrics/parameter_lists.rb +45 -0
- data/lib/rubbycop/cop/metrics/perceived_complexity.rb +61 -0
- data/lib/rubbycop/cop/mixin/access_modifier_node.rb +41 -0
- data/lib/rubbycop/cop/mixin/annotation_comment.rb +36 -0
- data/lib/rubbycop/cop/mixin/array_hash_indentation.rb +82 -0
- data/lib/rubbycop/cop/mixin/array_min_size.rb +59 -0
- data/lib/rubbycop/cop/mixin/array_syntax.rb +15 -0
- data/lib/rubbycop/cop/mixin/autocorrect_alignment.rb +149 -0
- data/lib/rubbycop/cop/mixin/check_assignment.rb +40 -0
- data/lib/rubbycop/cop/mixin/classish_length.rb +36 -0
- data/lib/rubbycop/cop/mixin/code_length.rb +32 -0
- data/lib/rubbycop/cop/mixin/configurable_enforced_style.rb +97 -0
- data/lib/rubbycop/cop/mixin/configurable_formatting.rb +48 -0
- data/lib/rubbycop/cop/mixin/configurable_max.rb +19 -0
- data/lib/rubbycop/cop/mixin/configurable_naming.rb +16 -0
- data/lib/rubbycop/cop/mixin/configurable_numbering.rb +17 -0
- data/lib/rubbycop/cop/mixin/def_node.rb +27 -0
- data/lib/rubbycop/cop/mixin/documentation_comment.rb +46 -0
- data/lib/rubbycop/cop/mixin/duplication.rb +46 -0
- data/lib/rubbycop/cop/mixin/empty_lines_around_body.rb +161 -0
- data/lib/rubbycop/cop/mixin/end_keyword_alignment.rb +85 -0
- data/lib/rubbycop/cop/mixin/enforce_superclass.rb +36 -0
- data/lib/rubbycop/cop/mixin/first_element_line_break.rb +41 -0
- data/lib/rubbycop/cop/mixin/frozen_string_literal.rb +37 -0
- data/lib/rubbycop/cop/mixin/hash_alignment.rb +116 -0
- data/lib/rubbycop/cop/mixin/ignored_pattern.rb +27 -0
- data/lib/rubbycop/cop/mixin/integer_node.rb +12 -0
- data/lib/rubbycop/cop/mixin/match_range.rb +22 -0
- data/lib/rubbycop/cop/mixin/method_complexity.rb +30 -0
- data/lib/rubbycop/cop/mixin/method_preference.rb +30 -0
- data/lib/rubbycop/cop/mixin/min_body_length.rb +19 -0
- data/lib/rubbycop/cop/mixin/multiline_expression_indentation.rb +183 -0
- data/lib/rubbycop/cop/mixin/multiline_literal_brace_layout.rb +152 -0
- data/lib/rubbycop/cop/mixin/negative_conditional.rb +43 -0
- data/lib/rubbycop/cop/mixin/on_method_def.rb +44 -0
- data/lib/rubbycop/cop/mixin/on_normal_if_unless.rb +14 -0
- data/lib/rubbycop/cop/mixin/parentheses.rb +22 -0
- data/lib/rubbycop/cop/mixin/parser_diagnostic.rb +34 -0
- data/lib/rubbycop/cop/mixin/percent_literal.rb +100 -0
- data/lib/rubbycop/cop/mixin/preceding_following_alignment.rb +89 -0
- data/lib/rubbycop/cop/mixin/rescue_node.rb +21 -0
- data/lib/rubbycop/cop/mixin/safe_assignment.rb +20 -0
- data/lib/rubbycop/cop/mixin/safe_mode.rb +22 -0
- data/lib/rubbycop/cop/mixin/space_after_punctuation.rb +55 -0
- data/lib/rubbycop/cop/mixin/space_before_punctuation.rb +48 -0
- data/lib/rubbycop/cop/mixin/space_inside.rb +76 -0
- data/lib/rubbycop/cop/mixin/statement_modifier.rb +69 -0
- data/lib/rubbycop/cop/mixin/string_help.rb +33 -0
- data/lib/rubbycop/cop/mixin/string_literals_help.rb +33 -0
- data/lib/rubbycop/cop/mixin/surrounding_space.rb +40 -0
- data/lib/rubbycop/cop/mixin/target_rails_version.rb +16 -0
- data/lib/rubbycop/cop/mixin/target_ruby_version.rb +16 -0
- data/lib/rubbycop/cop/mixin/too_many_lines.rb +39 -0
- data/lib/rubbycop/cop/mixin/trailing_comma.rb +161 -0
- data/lib/rubbycop/cop/mixin/unused_argument.rb +42 -0
- data/lib/rubbycop/cop/offense.rb +188 -0
- data/lib/rubbycop/cop/performance/caller.rb +41 -0
- data/lib/rubbycop/cop/performance/case_when_splat.rb +176 -0
- data/lib/rubbycop/cop/performance/casecmp.rb +107 -0
- data/lib/rubbycop/cop/performance/compare_with_block.rb +107 -0
- data/lib/rubbycop/cop/performance/count.rb +98 -0
- data/lib/rubbycop/cop/performance/detect.rb +107 -0
- data/lib/rubbycop/cop/performance/double_start_end_with.rb +102 -0
- data/lib/rubbycop/cop/performance/end_with.rb +55 -0
- data/lib/rubbycop/cop/performance/fixed_size.rb +56 -0
- data/lib/rubbycop/cop/performance/flat_map.rb +73 -0
- data/lib/rubbycop/cop/performance/hash_each_methods.rb +84 -0
- data/lib/rubbycop/cop/performance/lstrip_rstrip.rb +41 -0
- data/lib/rubbycop/cop/performance/range_include.rb +41 -0
- data/lib/rubbycop/cop/performance/redundant_block_call.rb +93 -0
- data/lib/rubbycop/cop/performance/redundant_match.rb +55 -0
- data/lib/rubbycop/cop/performance/redundant_merge.rb +149 -0
- data/lib/rubbycop/cop/performance/redundant_sort_by.rb +45 -0
- data/lib/rubbycop/cop/performance/regexp_match.rb +215 -0
- data/lib/rubbycop/cop/performance/reverse_each.rb +40 -0
- data/lib/rubbycop/cop/performance/sample.rb +140 -0
- data/lib/rubbycop/cop/performance/size.rb +71 -0
- data/lib/rubbycop/cop/performance/start_with.rb +58 -0
- data/lib/rubbycop/cop/performance/string_replacement.rb +170 -0
- data/lib/rubbycop/cop/performance/times_map.rb +61 -0
- data/lib/rubbycop/cop/rails/action_filter.rb +96 -0
- data/lib/rubbycop/cop/rails/active_support_aliases.rb +68 -0
- data/lib/rubbycop/cop/rails/application_job.rb +32 -0
- data/lib/rubbycop/cop/rails/application_record.rb +32 -0
- data/lib/rubbycop/cop/rails/blank.rb +138 -0
- data/lib/rubbycop/cop/rails/date.rb +127 -0
- data/lib/rubbycop/cop/rails/delegate.rb +106 -0
- data/lib/rubbycop/cop/rails/delegate_allow_blank.rb +51 -0
- data/lib/rubbycop/cop/rails/dynamic_find_by.rb +81 -0
- data/lib/rubbycop/cop/rails/enum_uniqueness.rb +43 -0
- data/lib/rubbycop/cop/rails/exit.rb +61 -0
- data/lib/rubbycop/cop/rails/file_path.rb +75 -0
- data/lib/rubbycop/cop/rails/find_by.rb +51 -0
- data/lib/rubbycop/cop/rails/find_each.rb +47 -0
- data/lib/rubbycop/cop/rails/has_and_belongs_to_many.rb +18 -0
- data/lib/rubbycop/cop/rails/http_positional_arguments.rb +106 -0
- data/lib/rubbycop/cop/rails/not_null_column.rb +67 -0
- data/lib/rubbycop/cop/rails/output.rb +23 -0
- data/lib/rubbycop/cop/rails/output_safety.rb +58 -0
- data/lib/rubbycop/cop/rails/pluralization_grammar.rb +106 -0
- data/lib/rubbycop/cop/rails/present.rb +143 -0
- data/lib/rubbycop/cop/rails/read_write_attribute.rb +65 -0
- data/lib/rubbycop/cop/rails/relative_date_constant.rb +88 -0
- data/lib/rubbycop/cop/rails/request_referer.rb +56 -0
- data/lib/rubbycop/cop/rails/reversible_migration.rb +216 -0
- data/lib/rubbycop/cop/rails/safe_navigation.rb +91 -0
- data/lib/rubbycop/cop/rails/save_bang.rb +160 -0
- data/lib/rubbycop/cop/rails/scope_args.rb +29 -0
- data/lib/rubbycop/cop/rails/skips_model_validations.rb +63 -0
- data/lib/rubbycop/cop/rails/time_zone.rb +197 -0
- data/lib/rubbycop/cop/rails/uniq_before_pluck.rb +93 -0
- data/lib/rubbycop/cop/rails/validation.rb +64 -0
- data/lib/rubbycop/cop/registry.rb +171 -0
- data/lib/rubbycop/cop/security/eval.rb +30 -0
- data/lib/rubbycop/cop/security/json_load.rb +44 -0
- data/lib/rubbycop/cop/security/marshal_load.rb +37 -0
- data/lib/rubbycop/cop/security/yaml_load.rb +37 -0
- data/lib/rubbycop/cop/severity.rb +76 -0
- data/lib/rubbycop/cop/style/accessor_method_name.rb +45 -0
- data/lib/rubbycop/cop/style/alias.rb +119 -0
- data/lib/rubbycop/cop/style/and_or.rb +125 -0
- data/lib/rubbycop/cop/style/array_join.rb +30 -0
- data/lib/rubbycop/cop/style/ascii_comments.rb +38 -0
- data/lib/rubbycop/cop/style/ascii_identifiers.rb +36 -0
- data/lib/rubbycop/cop/style/attr.rb +50 -0
- data/lib/rubbycop/cop/style/auto_resource_cleanup.rb +42 -0
- data/lib/rubbycop/cop/style/bare_percent_literals.rb +57 -0
- data/lib/rubbycop/cop/style/begin_block.rb +16 -0
- data/lib/rubbycop/cop/style/block_comments.rb +46 -0
- data/lib/rubbycop/cop/style/block_delimiters.rb +228 -0
- data/lib/rubbycop/cop/style/braces_around_hash_parameters.rb +138 -0
- data/lib/rubbycop/cop/style/case_equality.rb +18 -0
- data/lib/rubbycop/cop/style/character_literal.rb +43 -0
- data/lib/rubbycop/cop/style/class_and_module_camel_case.rb +29 -0
- data/lib/rubbycop/cop/style/class_and_module_children.rb +69 -0
- data/lib/rubbycop/cop/style/class_check.rb +40 -0
- data/lib/rubbycop/cop/style/class_methods.rb +67 -0
- data/lib/rubbycop/cop/style/class_vars.rb +23 -0
- data/lib/rubbycop/cop/style/collection_methods.rb +51 -0
- data/lib/rubbycop/cop/style/colon_method_call.rb +33 -0
- data/lib/rubbycop/cop/style/command_literal.rb +119 -0
- data/lib/rubbycop/cop/style/comment_annotation.rb +62 -0
- data/lib/rubbycop/cop/style/conditional_assignment.rb +691 -0
- data/lib/rubbycop/cop/style/constant_name.rb +29 -0
- data/lib/rubbycop/cop/style/copyright.rb +89 -0
- data/lib/rubbycop/cop/style/def_with_parentheses.rb +31 -0
- data/lib/rubbycop/cop/style/documentation.rb +79 -0
- data/lib/rubbycop/cop/style/documentation_method.rb +80 -0
- data/lib/rubbycop/cop/style/double_negation.rb +35 -0
- data/lib/rubbycop/cop/style/each_for_simple_loop.rb +57 -0
- data/lib/rubbycop/cop/style/each_with_object.rb +91 -0
- data/lib/rubbycop/cop/style/empty_case_condition.rb +84 -0
- data/lib/rubbycop/cop/style/empty_else.rb +138 -0
- data/lib/rubbycop/cop/style/empty_literal.rb +108 -0
- data/lib/rubbycop/cop/style/empty_method.rb +102 -0
- data/lib/rubbycop/cop/style/encoding.rb +92 -0
- data/lib/rubbycop/cop/style/end_block.rb +17 -0
- data/lib/rubbycop/cop/style/even_odd.rb +56 -0
- data/lib/rubbycop/cop/style/file_name.rb +183 -0
- data/lib/rubbycop/cop/style/flip_flop.rb +20 -0
- data/lib/rubbycop/cop/style/for.rb +50 -0
- data/lib/rubbycop/cop/style/format_string.rb +46 -0
- data/lib/rubbycop/cop/style/format_string_token.rb +141 -0
- data/lib/rubbycop/cop/style/frozen_string_literal_comment.rb +96 -0
- data/lib/rubbycop/cop/style/global_vars.rb +70 -0
- data/lib/rubbycop/cop/style/guard_clause.rb +90 -0
- data/lib/rubbycop/cop/style/hash_syntax.rb +214 -0
- data/lib/rubbycop/cop/style/identical_conditional_branches.rb +130 -0
- data/lib/rubbycop/cop/style/if_inside_else.rb +45 -0
- data/lib/rubbycop/cop/style/if_unless_modifier.rb +80 -0
- data/lib/rubbycop/cop/style/if_unless_modifier_of_if_unless.rb +38 -0
- data/lib/rubbycop/cop/style/if_with_semicolon.rb +20 -0
- data/lib/rubbycop/cop/style/implicit_runtime_error.rb +31 -0
- data/lib/rubbycop/cop/style/infinite_loop.rb +91 -0
- data/lib/rubbycop/cop/style/inline_comment.rb +32 -0
- data/lib/rubbycop/cop/style/inverse_methods.rb +130 -0
- data/lib/rubbycop/cop/style/lambda.rb +209 -0
- data/lib/rubbycop/cop/style/lambda_call.rb +66 -0
- data/lib/rubbycop/cop/style/line_end_concatenation.rb +115 -0
- data/lib/rubbycop/cop/style/method_call_with_args_parentheses.rb +107 -0
- data/lib/rubbycop/cop/style/method_call_without_args_parentheses.rb +75 -0
- data/lib/rubbycop/cop/style/method_called_on_do_end_block.rb +44 -0
- data/lib/rubbycop/cop/style/method_def_parentheses.rb +83 -0
- data/lib/rubbycop/cop/style/method_missing.rb +81 -0
- data/lib/rubbycop/cop/style/method_name.rb +28 -0
- data/lib/rubbycop/cop/style/missing_else.rb +100 -0
- data/lib/rubbycop/cop/style/mixin_grouping.rb +135 -0
- data/lib/rubbycop/cop/style/module_function.rb +64 -0
- data/lib/rubbycop/cop/style/multiline_block_chain.rb +42 -0
- data/lib/rubbycop/cop/style/multiline_if_modifier.rb +63 -0
- data/lib/rubbycop/cop/style/multiline_if_then.rb +47 -0
- data/lib/rubbycop/cop/style/multiline_memoization.rb +77 -0
- data/lib/rubbycop/cop/style/multiline_ternary_operator.rb +19 -0
- data/lib/rubbycop/cop/style/mutable_constant.rb +68 -0
- data/lib/rubbycop/cop/style/negated_if.rb +103 -0
- data/lib/rubbycop/cop/style/negated_while.rb +32 -0
- data/lib/rubbycop/cop/style/nested_modifier.rb +87 -0
- data/lib/rubbycop/cop/style/nested_parenthesized_calls.rb +61 -0
- data/lib/rubbycop/cop/style/nested_ternary_operator.rb +21 -0
- data/lib/rubbycop/cop/style/next.rb +225 -0
- data/lib/rubbycop/cop/style/nil_comparison.rb +35 -0
- data/lib/rubbycop/cop/style/non_nil_check.rb +121 -0
- data/lib/rubbycop/cop/style/not.rb +69 -0
- data/lib/rubbycop/cop/style/numeric_literal_prefix.rb +97 -0
- data/lib/rubbycop/cop/style/numeric_literals.rb +101 -0
- data/lib/rubbycop/cop/style/numeric_predicate.rb +140 -0
- data/lib/rubbycop/cop/style/one_line_conditional.rb +75 -0
- data/lib/rubbycop/cop/style/op_method.rb +41 -0
- data/lib/rubbycop/cop/style/option_hash.rb +58 -0
- data/lib/rubbycop/cop/style/optional_arguments.rb +62 -0
- data/lib/rubbycop/cop/style/parallel_assignment.rb +287 -0
- data/lib/rubbycop/cop/style/parentheses_around_condition.rb +56 -0
- data/lib/rubbycop/cop/style/percent_literal_delimiters.rb +100 -0
- data/lib/rubbycop/cop/style/percent_q_literals.rb +52 -0
- data/lib/rubbycop/cop/style/perl_backrefs.rb +31 -0
- data/lib/rubbycop/cop/style/predicate_name.rb +67 -0
- data/lib/rubbycop/cop/style/preferred_hash_methods.rb +78 -0
- data/lib/rubbycop/cop/style/proc.rb +26 -0
- data/lib/rubbycop/cop/style/raise_args.rb +140 -0
- data/lib/rubbycop/cop/style/redundant_begin.rb +47 -0
- data/lib/rubbycop/cop/style/redundant_exception.rb +55 -0
- data/lib/rubbycop/cop/style/redundant_freeze.rb +45 -0
- data/lib/rubbycop/cop/style/redundant_parentheses.rb +199 -0
- data/lib/rubbycop/cop/style/redundant_return.rb +121 -0
- data/lib/rubbycop/cop/style/redundant_self.rb +144 -0
- data/lib/rubbycop/cop/style/regexp_literal.rb +114 -0
- data/lib/rubbycop/cop/style/rescue_modifier.rb +37 -0
- data/lib/rubbycop/cop/style/safe_navigation.rb +145 -0
- data/lib/rubbycop/cop/style/self_assignment.rb +93 -0
- data/lib/rubbycop/cop/style/semicolon.rb +70 -0
- data/lib/rubbycop/cop/style/send.rb +21 -0
- data/lib/rubbycop/cop/style/signal_exception.rb +109 -0
- data/lib/rubbycop/cop/style/single_line_block_params.rb +68 -0
- data/lib/rubbycop/cop/style/single_line_methods.rb +77 -0
- data/lib/rubbycop/cop/style/special_global_vars.rb +156 -0
- data/lib/rubbycop/cop/style/stabby_lambda_parentheses.rb +113 -0
- data/lib/rubbycop/cop/style/string_literals.rb +102 -0
- data/lib/rubbycop/cop/style/string_literals_in_interpolation.rb +30 -0
- data/lib/rubbycop/cop/style/string_methods.rb +34 -0
- data/lib/rubbycop/cop/style/struct_inheritance.rb +32 -0
- data/lib/rubbycop/cop/style/symbol_array.rb +109 -0
- data/lib/rubbycop/cop/style/symbol_literal.rb +32 -0
- data/lib/rubbycop/cop/style/symbol_proc.rb +143 -0
- data/lib/rubbycop/cop/style/ternary_parentheses.rb +200 -0
- data/lib/rubbycop/cop/style/trailing_comma_in_arguments.rb +64 -0
- data/lib/rubbycop/cop/style/trailing_comma_in_literal.rb +56 -0
- data/lib/rubbycop/cop/style/trailing_underscore_variable.rb +113 -0
- data/lib/rubbycop/cop/style/trivial_accessors.rb +176 -0
- data/lib/rubbycop/cop/style/unless_else.rb +39 -0
- data/lib/rubbycop/cop/style/unneeded_capital_w.rb +41 -0
- data/lib/rubbycop/cop/style/unneeded_interpolation.rb +98 -0
- data/lib/rubbycop/cop/style/unneeded_percent_q.rb +96 -0
- data/lib/rubbycop/cop/style/variable_interpolation.rb +44 -0
- data/lib/rubbycop/cop/style/variable_name.rb +39 -0
- data/lib/rubbycop/cop/style/variable_number.rb +78 -0
- data/lib/rubbycop/cop/style/when_then.rb +24 -0
- data/lib/rubbycop/cop/style/while_until_do.rb +36 -0
- data/lib/rubbycop/cop/style/while_until_modifier.rb +41 -0
- data/lib/rubbycop/cop/style/word_array.rb +114 -0
- data/lib/rubbycop/cop/style/zero_length_predicate.rb +90 -0
- data/lib/rubbycop/cop/team.rb +193 -0
- data/lib/rubbycop/cop/util.rb +309 -0
- data/lib/rubbycop/cop/variable_force.rb +458 -0
- data/lib/rubbycop/cop/variable_force/assignment.rb +90 -0
- data/lib/rubbycop/cop/variable_force/branch.rb +318 -0
- data/lib/rubbycop/cop/variable_force/branchable.rb +21 -0
- data/lib/rubbycop/cop/variable_force/reference.rb +49 -0
- data/lib/rubbycop/cop/variable_force/scope.rb +107 -0
- data/lib/rubbycop/cop/variable_force/variable.rb +103 -0
- data/lib/rubbycop/cop/variable_force/variable_table.rb +128 -0
- data/lib/rubbycop/error.rb +11 -0
- data/lib/rubbycop/formatter/base_formatter.rb +123 -0
- data/lib/rubbycop/formatter/clang_style_formatter.rb +54 -0
- data/lib/rubbycop/formatter/colorizable.rb +41 -0
- data/lib/rubbycop/formatter/disabled_config_formatter.rb +181 -0
- data/lib/rubbycop/formatter/disabled_lines_formatter.rb +57 -0
- data/lib/rubbycop/formatter/emacs_style_formatter.rb +24 -0
- data/lib/rubbycop/formatter/file_list_formatter.rb +19 -0
- data/lib/rubbycop/formatter/formatter_set.rb +102 -0
- data/lib/rubbycop/formatter/fuubar_style_formatter.rb +80 -0
- data/lib/rubbycop/formatter/html_formatter.rb +134 -0
- data/lib/rubbycop/formatter/json_formatter.rb +74 -0
- data/lib/rubbycop/formatter/offense_count_formatter.rb +55 -0
- data/lib/rubbycop/formatter/progress_formatter.rb +63 -0
- data/lib/rubbycop/formatter/simple_text_formatter.rb +136 -0
- data/lib/rubbycop/formatter/text_util.rb +20 -0
- data/lib/rubbycop/formatter/worst_offenders_formatter.rb +60 -0
- data/lib/rubbycop/magic_comment.rb +210 -0
- data/lib/rubbycop/name_similarity.rb +21 -0
- data/lib/rubbycop/node_pattern.rb +543 -0
- data/lib/rubbycop/options.rb +355 -0
- data/lib/rubbycop/path_util.rb +36 -0
- data/lib/rubbycop/platform.rb +11 -0
- data/lib/rubbycop/processed_source.rb +151 -0
- data/lib/rubbycop/rake_task.rb +86 -0
- data/lib/rubbycop/remote_config.rb +78 -0
- data/lib/rubbycop/result_cache.rb +176 -0
- data/lib/rubbycop/rspec/cop_helper.rb +98 -0
- data/lib/rubbycop/rspec/host_environment_simulation_helper.rb +32 -0
- data/lib/rubbycop/rspec/shared_contexts.rb +98 -0
- data/lib/rubbycop/rspec/shared_examples.rb +92 -0
- data/lib/rubbycop/rspec/support.rb +8 -0
- data/lib/rubbycop/runner.rb +338 -0
- data/lib/rubbycop/string_interpreter.rb +57 -0
- data/lib/rubbycop/string_util.rb +156 -0
- data/lib/rubbycop/target_finder.rb +201 -0
- data/lib/rubbycop/token.rb +25 -0
- data/lib/rubbycop/version.rb +19 -0
- data/lib/rubbycop/warning.rb +11 -0
- metadata +663 -0
@@ -0,0 +1,68 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# This cop checks whether some constant value isn't a
|
7
|
+
# mutable literal (e.g. array or hash).
|
8
|
+
#
|
9
|
+
# @example
|
10
|
+
# # bad
|
11
|
+
# CONST = [1, 2, 3]
|
12
|
+
#
|
13
|
+
# # good
|
14
|
+
# CONST = [1, 2, 3].freeze
|
15
|
+
class MutableConstant < Cop
|
16
|
+
include FrozenStringLiteral
|
17
|
+
|
18
|
+
MSG = 'Freeze mutable objects assigned to constants.'.freeze
|
19
|
+
|
20
|
+
def on_casgn(node)
|
21
|
+
_scope, _const_name, value = *node
|
22
|
+
on_assignment(value)
|
23
|
+
end
|
24
|
+
|
25
|
+
def on_or_asgn(node)
|
26
|
+
lhs, value = *node
|
27
|
+
|
28
|
+
return unless lhs && lhs.casgn_type?
|
29
|
+
|
30
|
+
on_assignment(value)
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def on_assignment(value)
|
36
|
+
value = splat_value(value) if splat_value(value)
|
37
|
+
|
38
|
+
return unless value && value.mutable_literal?
|
39
|
+
return if FROZEN_STRING_LITERAL_TYPES.include?(value.type) &&
|
40
|
+
frozen_string_literals_enabled?
|
41
|
+
|
42
|
+
add_offense(value, :expression)
|
43
|
+
end
|
44
|
+
|
45
|
+
def autocorrect(node)
|
46
|
+
expr = node.source_range
|
47
|
+
|
48
|
+
lambda do |corrector|
|
49
|
+
if unbracketed_array?(node)
|
50
|
+
corrector.insert_before(expr, '[')
|
51
|
+
corrector.insert_after(expr, '].freeze')
|
52
|
+
else
|
53
|
+
corrector.insert_after(expr, '.freeze')
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def unbracketed_array?(node)
|
59
|
+
node.array_type? && !node.square_brackets? && !node.percent_literal?
|
60
|
+
end
|
61
|
+
|
62
|
+
def_node_matcher :splat_value, <<-PATTERN
|
63
|
+
(array (splat $_))
|
64
|
+
PATTERN
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# Checks for uses of if with a negated condition. Only ifs
|
7
|
+
# without else are considered. There are three different styles:
|
8
|
+
#
|
9
|
+
# - both
|
10
|
+
# - prefix
|
11
|
+
# - postfix
|
12
|
+
#
|
13
|
+
# @example
|
14
|
+
#
|
15
|
+
# # EnforcedStyle: both
|
16
|
+
# # enforces `unless` for `prefix` and `postfix` conditionals
|
17
|
+
#
|
18
|
+
# # good
|
19
|
+
#
|
20
|
+
# unless foo
|
21
|
+
# bar
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# # bad
|
25
|
+
#
|
26
|
+
# if !foo
|
27
|
+
# bar
|
28
|
+
# end
|
29
|
+
#
|
30
|
+
# # good
|
31
|
+
#
|
32
|
+
# bar unless foo
|
33
|
+
#
|
34
|
+
# # bad
|
35
|
+
#
|
36
|
+
# bar if !foo
|
37
|
+
#
|
38
|
+
# @example
|
39
|
+
#
|
40
|
+
# # EnforcedStyle: prefix
|
41
|
+
# # enforces `unless` for just `prefix` conditionals
|
42
|
+
#
|
43
|
+
# # good
|
44
|
+
#
|
45
|
+
# unless foo
|
46
|
+
# bar
|
47
|
+
# end
|
48
|
+
#
|
49
|
+
# # bad
|
50
|
+
#
|
51
|
+
# if !foo
|
52
|
+
# bar
|
53
|
+
# end
|
54
|
+
#
|
55
|
+
# # good
|
56
|
+
#
|
57
|
+
# bar if !foo
|
58
|
+
#
|
59
|
+
# @example
|
60
|
+
#
|
61
|
+
# # EnforcedStyle: postfix
|
62
|
+
# # enforces `unless` for just `postfix` conditionals
|
63
|
+
#
|
64
|
+
# # good
|
65
|
+
#
|
66
|
+
# bar unless foo
|
67
|
+
#
|
68
|
+
# # bad
|
69
|
+
#
|
70
|
+
# bar if !foo
|
71
|
+
#
|
72
|
+
# # good
|
73
|
+
#
|
74
|
+
# if !foo
|
75
|
+
# bar
|
76
|
+
# end
|
77
|
+
class NegatedIf < Cop
|
78
|
+
include ConfigurableEnforcedStyle
|
79
|
+
include NegativeConditional
|
80
|
+
|
81
|
+
MSG = 'Favor `%s` over `%s` for negative conditions.'.freeze
|
82
|
+
|
83
|
+
def on_if(node)
|
84
|
+
return if node.elsif? || node.ternary?
|
85
|
+
return if style == :prefix && node.modifier_form?
|
86
|
+
return if style == :postfix && !node.modifier_form?
|
87
|
+
|
88
|
+
check_negative_conditional(node)
|
89
|
+
end
|
90
|
+
|
91
|
+
def message(node)
|
92
|
+
format(MSG, node.inverse_keyword, node.keyword)
|
93
|
+
end
|
94
|
+
|
95
|
+
private
|
96
|
+
|
97
|
+
def autocorrect(node)
|
98
|
+
negative_conditional_corrector(node)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# Checks for uses of while with a negated condition.
|
7
|
+
class NegatedWhile < Cop
|
8
|
+
include NegativeConditional
|
9
|
+
|
10
|
+
MSG = 'Favor `%s` over `%s` for negative conditions.'.freeze
|
11
|
+
|
12
|
+
def on_while(node)
|
13
|
+
check_negative_conditional(node)
|
14
|
+
end
|
15
|
+
|
16
|
+
def on_until(node)
|
17
|
+
check_negative_conditional(node)
|
18
|
+
end
|
19
|
+
|
20
|
+
def message(node)
|
21
|
+
format(MSG, node.inverse_keyword, node.keyword)
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def autocorrect(node)
|
27
|
+
negative_conditional_corrector(node)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# This cop checks for nested use of if, unless, while and until in their
|
7
|
+
# modifier form.
|
8
|
+
#
|
9
|
+
# @example
|
10
|
+
#
|
11
|
+
# # bad
|
12
|
+
# something if a if b
|
13
|
+
#
|
14
|
+
# # good
|
15
|
+
# something if b && a
|
16
|
+
class NestedModifier < Cop
|
17
|
+
MSG = 'Avoid using nested modifiers.'.freeze
|
18
|
+
|
19
|
+
def on_while(node)
|
20
|
+
check(node)
|
21
|
+
end
|
22
|
+
|
23
|
+
def on_until(node)
|
24
|
+
check(node)
|
25
|
+
end
|
26
|
+
|
27
|
+
def on_if(node)
|
28
|
+
check(node)
|
29
|
+
end
|
30
|
+
|
31
|
+
def check(node)
|
32
|
+
return if part_of_ignored_node?(node)
|
33
|
+
return unless modifier?(node) && modifier?(node.parent)
|
34
|
+
|
35
|
+
add_offense(node, :keyword)
|
36
|
+
ignore_node(node)
|
37
|
+
end
|
38
|
+
|
39
|
+
def modifier?(node)
|
40
|
+
node && MODIFIER_NODES.include?(node.type) && node.modifier_form?
|
41
|
+
end
|
42
|
+
|
43
|
+
def autocorrect(node)
|
44
|
+
return unless node.if_type? && node.parent.if_type?
|
45
|
+
|
46
|
+
range = range_between(node.loc.keyword.begin_pos,
|
47
|
+
node.parent.condition.source_range.end_pos)
|
48
|
+
|
49
|
+
lambda do |corrector|
|
50
|
+
corrector.replace(range, new_expression(node.parent, node))
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def new_expression(outer_node, inner_node)
|
55
|
+
operator = replacement_operator(outer_node.keyword)
|
56
|
+
lh_operand = left_hand_operand(outer_node, operator)
|
57
|
+
rh_operand = right_hand_operand(inner_node, outer_node.keyword)
|
58
|
+
|
59
|
+
"#{outer_node.keyword} #{lh_operand} #{operator} #{rh_operand}"
|
60
|
+
end
|
61
|
+
|
62
|
+
def replacement_operator(keyword)
|
63
|
+
keyword == 'if'.freeze ? '&&'.freeze : '||'.freeze
|
64
|
+
end
|
65
|
+
|
66
|
+
def left_hand_operand(node, operator)
|
67
|
+
expr = node.condition.source
|
68
|
+
expr = "(#{expr})" if node.condition.or_type? &&
|
69
|
+
operator == '&&'.freeze
|
70
|
+
expr
|
71
|
+
end
|
72
|
+
|
73
|
+
def right_hand_operand(node, left_hand_keyword)
|
74
|
+
expr = node.condition.source
|
75
|
+
expr = "(#{expr})" if requires_parens?(node.condition)
|
76
|
+
expr = "!#{expr}" unless left_hand_keyword == node.keyword
|
77
|
+
expr
|
78
|
+
end
|
79
|
+
|
80
|
+
def requires_parens?(node)
|
81
|
+
node.or_type? ||
|
82
|
+
!(RubbyCop::AST::Node::COMPARISON_OPERATORS & node.children).empty?
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# This cop checks for unparenthesized method calls in the argument list
|
7
|
+
# of a parenthesized method call.
|
8
|
+
#
|
9
|
+
# @example
|
10
|
+
# @good
|
11
|
+
# method1(method2(arg), method3(arg))
|
12
|
+
#
|
13
|
+
# @bad
|
14
|
+
# method1(method2 arg, method3, arg)
|
15
|
+
class NestedParenthesizedCalls < Cop
|
16
|
+
MSG = 'Add parentheses to nested method call `%s`.'.freeze
|
17
|
+
RSPEC_MATCHERS = %i[be eq eql equal be_kind_of be_instance_of
|
18
|
+
respond_to be_between match be_within
|
19
|
+
start_with end_with include raise_error].freeze
|
20
|
+
|
21
|
+
def on_send(node)
|
22
|
+
return unless node.parenthesized?
|
23
|
+
|
24
|
+
node.each_child_node(:send) do |nested|
|
25
|
+
next if allowed_omission?(nested)
|
26
|
+
|
27
|
+
add_offense(nested, nested.source_range, format(MSG, nested.source))
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def allowed_omission?(send_node)
|
34
|
+
!send_node.arguments? || send_node.parenthesized? ||
|
35
|
+
send_node.setter_method? || send_node.operator_method? ||
|
36
|
+
rspec_matcher?(send_node)
|
37
|
+
end
|
38
|
+
|
39
|
+
# TODO: Relegate this from RubbyCop core
|
40
|
+
def rspec_matcher?(send_node)
|
41
|
+
send_node.parent.arguments.one? && # .to, .not_to, etc
|
42
|
+
RSPEC_MATCHERS.include?(send_node.method_name) &&
|
43
|
+
send_node.arguments.one?
|
44
|
+
end
|
45
|
+
|
46
|
+
def autocorrect(nested)
|
47
|
+
first_arg = nested.first_argument.source_range
|
48
|
+
last_arg = nested.last_argument.source_range
|
49
|
+
|
50
|
+
leading_space =
|
51
|
+
range_with_surrounding_space(first_arg, :left).begin.resize(1)
|
52
|
+
|
53
|
+
lambda do |corrector|
|
54
|
+
corrector.replace(leading_space, '(')
|
55
|
+
corrector.insert_after(last_arg, ')')
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# This cop checks for nested ternary op expressions.
|
7
|
+
class NestedTernaryOperator < Cop
|
8
|
+
MSG = 'Ternary operators must not be nested. Prefer `if` or `else` ' \
|
9
|
+
'constructs instead.'.freeze
|
10
|
+
|
11
|
+
def on_if(node)
|
12
|
+
return unless node.ternary?
|
13
|
+
|
14
|
+
node.each_descendant(:if).select(&:ternary?).each do |nested_ternary|
|
15
|
+
add_offense(nested_ternary, :expression)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,225 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RubbyCop
|
4
|
+
module Cop
|
5
|
+
module Style
|
6
|
+
# Use `next` to skip iteration instead of a condition at the end.
|
7
|
+
#
|
8
|
+
# @example
|
9
|
+
# # bad
|
10
|
+
# [1, 2].each do |a|
|
11
|
+
# if a == 1
|
12
|
+
# puts a
|
13
|
+
# end
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# # good
|
17
|
+
# [1, 2].each do |a|
|
18
|
+
# next unless a == 1
|
19
|
+
# puts a
|
20
|
+
# end
|
21
|
+
class Next < Cop
|
22
|
+
include ConfigurableEnforcedStyle
|
23
|
+
include MinBodyLength
|
24
|
+
|
25
|
+
MSG = 'Use `next` to skip iteration.'.freeze
|
26
|
+
EXIT_TYPES = %i[break return].freeze
|
27
|
+
EACH_ = 'each_'.freeze
|
28
|
+
ENUMERATORS = %i[collect collect_concat detect downto each
|
29
|
+
find find_all find_index inject loop map!
|
30
|
+
map reduce reject reject! reverse_each select
|
31
|
+
select! times upto].freeze
|
32
|
+
|
33
|
+
def investigate(_processed_source)
|
34
|
+
# When correcting nested offenses, we need to keep track of how much
|
35
|
+
# we have adjusted the indentation of each line
|
36
|
+
@reindented_lines = Hash.new(0)
|
37
|
+
end
|
38
|
+
|
39
|
+
def on_block(node)
|
40
|
+
block_owner, _, body = *node
|
41
|
+
return unless block_owner.send_type?
|
42
|
+
return unless body && ends_with_condition?(body)
|
43
|
+
|
44
|
+
_, method_name = *block_owner
|
45
|
+
return unless enumerator?(method_name)
|
46
|
+
|
47
|
+
offense_node = offense_node(body)
|
48
|
+
add_offense(offense_node, offense_location(offense_node), MSG)
|
49
|
+
end
|
50
|
+
|
51
|
+
def on_while(node)
|
52
|
+
return unless node.body && ends_with_condition?(node.body)
|
53
|
+
|
54
|
+
offending_node = offense_node(node.body)
|
55
|
+
|
56
|
+
add_offense(offending_node, offense_location(offending_node), MSG)
|
57
|
+
end
|
58
|
+
alias on_until on_while
|
59
|
+
alias on_for on_while
|
60
|
+
|
61
|
+
private
|
62
|
+
|
63
|
+
def enumerator?(method_name)
|
64
|
+
ENUMERATORS.include?(method_name) ||
|
65
|
+
method_name.to_s.start_with?(EACH_)
|
66
|
+
end
|
67
|
+
|
68
|
+
def ends_with_condition?(body)
|
69
|
+
return true if simple_if_without_break?(body)
|
70
|
+
|
71
|
+
body.begin_type? && simple_if_without_break?(body.children.last)
|
72
|
+
end
|
73
|
+
|
74
|
+
def simple_if_without_break?(node)
|
75
|
+
return false unless if_without_else?(node)
|
76
|
+
return false if if_else_children?(node)
|
77
|
+
return false if allowed_modifier_if?(node)
|
78
|
+
|
79
|
+
!exit_body_type?(node)
|
80
|
+
end
|
81
|
+
|
82
|
+
def allowed_modifier_if?(node)
|
83
|
+
if node.modifier_form?
|
84
|
+
style == :skip_modifier_ifs
|
85
|
+
else
|
86
|
+
!min_body_length?(node)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def if_else_children?(node)
|
91
|
+
node.each_child_node(:if).any?(&:else?)
|
92
|
+
end
|
93
|
+
|
94
|
+
def if_without_else?(node)
|
95
|
+
node && node.if_type? && !node.ternary? && !node.else?
|
96
|
+
end
|
97
|
+
|
98
|
+
def exit_body_type?(node)
|
99
|
+
return false unless node.if_branch
|
100
|
+
|
101
|
+
EXIT_TYPES.include?(node.if_branch.type)
|
102
|
+
end
|
103
|
+
|
104
|
+
def offense_node(body)
|
105
|
+
*_, condition = *body
|
106
|
+
condition && condition.if_type? ? condition : body
|
107
|
+
end
|
108
|
+
|
109
|
+
def offense_location(offense_node)
|
110
|
+
condition_expression, = *offense_node
|
111
|
+
offense_begin_pos = offense_node.source_range.begin
|
112
|
+
offense_begin_pos.join(condition_expression.source_range)
|
113
|
+
end
|
114
|
+
|
115
|
+
def autocorrect(node)
|
116
|
+
lambda do |corrector|
|
117
|
+
if node.modifier_form?
|
118
|
+
autocorrect_modifier(corrector, node)
|
119
|
+
else
|
120
|
+
autocorrect_block(corrector, node)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
def autocorrect_modifier(corrector, node)
|
126
|
+
cond, if_body, else_body = *node
|
127
|
+
body = if_body || else_body
|
128
|
+
|
129
|
+
replacement = "next #{opposite_kw(if_body)} #{cond.source}\n" \
|
130
|
+
"#{' ' * node.source_range.column}#{body.source}"
|
131
|
+
|
132
|
+
corrector.replace(node.source_range, replacement)
|
133
|
+
end
|
134
|
+
|
135
|
+
def autocorrect_block(corrector, node)
|
136
|
+
cond, if_body, = *node
|
137
|
+
|
138
|
+
next_code = "next #{opposite_kw(if_body)} #{cond.source}"
|
139
|
+
corrector.insert_before(node.source_range, next_code)
|
140
|
+
|
141
|
+
corrector.remove(cond_range(node, cond))
|
142
|
+
corrector.remove(end_range(node))
|
143
|
+
|
144
|
+
lines = reindentable_lines(node)
|
145
|
+
return if lines.empty?
|
146
|
+
|
147
|
+
reindent(lines, cond, corrector)
|
148
|
+
end
|
149
|
+
|
150
|
+
def opposite_kw(if_body)
|
151
|
+
if_body.nil? ? 'if' : 'unless'
|
152
|
+
end
|
153
|
+
|
154
|
+
def cond_range(node, cond)
|
155
|
+
end_pos = if node.loc.begin
|
156
|
+
node.loc.begin.end_pos # after "then"
|
157
|
+
else
|
158
|
+
cond.source_range.end_pos
|
159
|
+
end
|
160
|
+
|
161
|
+
range_between(node.source_range.begin_pos, end_pos)
|
162
|
+
end
|
163
|
+
|
164
|
+
def end_range(node)
|
165
|
+
source_buffer = node.source_range.source_buffer
|
166
|
+
end_pos = node.loc.end.end_pos
|
167
|
+
begin_pos = node.loc.end.begin_pos - node.source_range.column
|
168
|
+
begin_pos -= 1 if end_followed_by_whitespace_only?(source_buffer,
|
169
|
+
end_pos)
|
170
|
+
|
171
|
+
range_between(begin_pos, end_pos)
|
172
|
+
end
|
173
|
+
|
174
|
+
def end_followed_by_whitespace_only?(source_buffer, end_pos)
|
175
|
+
source_buffer.source[end_pos..-1] =~ /\A\s*$/
|
176
|
+
end
|
177
|
+
|
178
|
+
def reindentable_lines(node)
|
179
|
+
buffer = node.source_range.source_buffer
|
180
|
+
|
181
|
+
# end_range starts with the final newline of the if body
|
182
|
+
lines = (node.source_range.line + 1)...node.loc.end.line
|
183
|
+
lines = lines.to_a - heredoc_lines(node)
|
184
|
+
# Skip blank lines
|
185
|
+
lines.reject { |lineno| buffer.source_line(lineno) =~ /\A\s*\z/ }
|
186
|
+
end
|
187
|
+
|
188
|
+
# Adjust indentation of `lines` to match `node`
|
189
|
+
def reindent(lines, node, corrector)
|
190
|
+
range = node.source_range
|
191
|
+
buffer = range.source_buffer
|
192
|
+
|
193
|
+
target_indent = range.source_line =~ /\S/
|
194
|
+
delta = actual_indent(lines, buffer) - target_indent
|
195
|
+
lines.each do |lineno|
|
196
|
+
reindent_line(corrector, lineno, delta, buffer)
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
def actual_indent(lines, buffer)
|
201
|
+
lines.map { |lineno| buffer.source_line(lineno) =~ /\S/ }.min
|
202
|
+
end
|
203
|
+
|
204
|
+
def heredoc_lines(node)
|
205
|
+
node.each_node(:dstr)
|
206
|
+
.select { |n| n.loc.respond_to?(:heredoc_body) }
|
207
|
+
.map { |n| n.loc.heredoc_body }
|
208
|
+
.flat_map { |b| (b.line...b.last_line).to_a }
|
209
|
+
end
|
210
|
+
|
211
|
+
def reindent_line(corrector, lineno, delta, buffer)
|
212
|
+
adjustment = delta + @reindented_lines[lineno]
|
213
|
+
@reindented_lines[lineno] = adjustment
|
214
|
+
|
215
|
+
if adjustment > 0
|
216
|
+
corrector.remove_leading(buffer.line_range(lineno), adjustment)
|
217
|
+
elsif adjustment < 0
|
218
|
+
corrector.insert_before(buffer.line_range(lineno),
|
219
|
+
' ' * -adjustment)
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|