rubocop 0.70.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (751) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +64 -40
  4. data/config/default.yml +1316 -986
  5. data/config/obsoletion.yml +196 -0
  6. data/exe/rubocop +1 -1
  7. data/lib/rubocop/ast_aliases.rb +8 -0
  8. data/lib/rubocop/cached_data.rb +4 -2
  9. data/lib/rubocop/cli/command/auto_genenerate_config.rb +141 -0
  10. data/lib/rubocop/cli/command/base.rb +35 -0
  11. data/lib/rubocop/cli/command/execute_runner.rb +100 -0
  12. data/lib/rubocop/cli/command/init_dotfile.rb +46 -0
  13. data/lib/rubocop/cli/command/show_cops.rb +77 -0
  14. data/lib/rubocop/cli/command/suggest_extensions.rb +80 -0
  15. data/lib/rubocop/cli/command/version.rb +18 -0
  16. data/lib/rubocop/cli/command.rb +22 -0
  17. data/lib/rubocop/cli/environment.rb +22 -0
  18. data/lib/rubocop/cli.rb +22 -230
  19. data/lib/rubocop/comment_config.rb +29 -16
  20. data/lib/rubocop/config.rb +80 -509
  21. data/lib/rubocop/config_loader.rb +122 -91
  22. data/lib/rubocop/config_loader_resolver.rb +65 -24
  23. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  24. data/lib/rubocop/config_obsoletion/changed_parameter.rb +21 -0
  25. data/lib/rubocop/config_obsoletion/cop_rule.rb +34 -0
  26. data/lib/rubocop/config_obsoletion/extracted_cop.rb +44 -0
  27. data/lib/rubocop/config_obsoletion/parameter_rule.rb +44 -0
  28. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  29. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  30. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  31. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  32. data/lib/rubocop/config_obsoletion.rb +101 -0
  33. data/lib/rubocop/config_regeneration.rb +33 -0
  34. data/lib/rubocop/config_store.rb +19 -5
  35. data/lib/rubocop/config_validator.rb +239 -0
  36. data/lib/rubocop/cop/autocorrect_logic.rb +83 -6
  37. data/lib/rubocop/cop/badge.rb +15 -30
  38. data/lib/rubocop/cop/base.rb +447 -0
  39. data/lib/rubocop/cop/bundler/duplicated_gem.rb +28 -4
  40. data/lib/rubocop/cop/bundler/gem_comment.rb +83 -9
  41. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +15 -23
  42. data/lib/rubocop/cop/bundler/ordered_gems.rb +1 -1
  43. data/lib/rubocop/cop/commissioner.rb +102 -70
  44. data/lib/rubocop/cop/cop.rb +102 -186
  45. data/lib/rubocop/cop/corrector.rb +71 -122
  46. data/lib/rubocop/cop/correctors/alignment_corrector.rb +45 -23
  47. data/lib/rubocop/cop/correctors/condition_corrector.rb +3 -6
  48. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +9 -10
  49. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +4 -4
  50. data/lib/rubocop/cop/correctors/line_break_corrector.rb +10 -10
  51. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +36 -5
  52. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +5 -8
  53. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +9 -14
  54. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +8 -10
  55. data/lib/rubocop/cop/correctors/space_corrector.rb +2 -5
  56. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +6 -8
  57. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +15 -18
  58. data/lib/rubocop/cop/documentation.rb +22 -0
  59. data/lib/rubocop/cop/force.rb +2 -1
  60. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +5 -5
  61. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +3 -5
  62. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +45 -20
  63. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  64. data/lib/rubocop/cop/generator/configuration_injector.rb +12 -7
  65. data/lib/rubocop/cop/generator/require_file_injector.rb +1 -1
  66. data/lib/rubocop/cop/generator.rb +15 -21
  67. data/lib/rubocop/cop/ignored_node.rb +1 -3
  68. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +52 -0
  69. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +3 -3
  70. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +13 -15
  71. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +11 -10
  72. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +12 -8
  73. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +10 -10
  74. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +5 -5
  75. data/lib/rubocop/cop/internal_affairs.rb +1 -0
  76. data/lib/rubocop/cop/layout/{align_arguments.rb → argument_alignment.rb} +1 -1
  77. data/lib/rubocop/cop/layout/array_alignment.rb +83 -0
  78. data/lib/rubocop/cop/layout/{indent_assignment.rb → assignment_indentation.rb} +11 -2
  79. data/lib/rubocop/cop/layout/begin_end_alignment.rb +77 -0
  80. data/lib/rubocop/cop/layout/block_alignment.rb +30 -27
  81. data/lib/rubocop/cop/layout/block_end_newline.rb +5 -3
  82. data/lib/rubocop/cop/layout/case_indentation.rb +21 -25
  83. data/lib/rubocop/cop/layout/class_structure.rb +53 -69
  84. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +4 -6
  85. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +1 -1
  86. data/lib/rubocop/cop/layout/comment_indentation.rb +14 -17
  87. data/lib/rubocop/cop/layout/condition_position.rb +16 -8
  88. data/lib/rubocop/cop/layout/def_end_alignment.rb +7 -4
  89. data/lib/rubocop/cop/layout/dot_position.rb +21 -20
  90. data/lib/rubocop/cop/layout/else_alignment.rb +23 -2
  91. data/lib/rubocop/cop/layout/empty_comment.rb +38 -40
  92. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +43 -25
  93. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +15 -15
  94. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  95. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +100 -31
  96. data/lib/rubocop/cop/layout/empty_lines.rb +6 -9
  97. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +21 -20
  98. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +13 -9
  99. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  100. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +2 -5
  101. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +4 -5
  102. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +4 -7
  103. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +3 -7
  104. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +2 -5
  105. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +2 -5
  106. data/lib/rubocop/cop/layout/end_alignment.rb +17 -22
  107. data/lib/rubocop/cop/layout/end_of_line.rb +16 -11
  108. data/lib/rubocop/cop/layout/extra_spacing.rb +34 -94
  109. data/lib/rubocop/cop/layout/{indent_first_argument.rb → first_argument_indentation.rb} +28 -15
  110. data/lib/rubocop/cop/layout/{indent_first_array_element.rb → first_array_element_indentation.rb} +18 -14
  111. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +3 -6
  112. data/lib/rubocop/cop/layout/{indent_first_hash_element.rb → first_hash_element_indentation.rb} +5 -5
  113. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +2 -5
  114. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +5 -11
  115. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +2 -5
  116. data/lib/rubocop/cop/layout/{indent_first_parameter.rb → first_parameter_indentation.rb} +8 -4
  117. data/lib/rubocop/cop/layout/{align_hash.rb → hash_alignment.rb} +41 -37
  118. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +30 -17
  119. data/lib/rubocop/cop/layout/heredoc_indentation.rb +176 -0
  120. data/lib/rubocop/cop/layout/indentation_consistency.rb +13 -12
  121. data/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  122. data/lib/rubocop/cop/layout/indentation_width.rb +29 -13
  123. data/lib/rubocop/cop/layout/initial_indentation.rb +6 -7
  124. data/lib/rubocop/cop/layout/leading_comment_space.rb +72 -11
  125. data/lib/rubocop/cop/layout/{leading_blank_lines.rb → leading_empty_lines.rb} +6 -11
  126. data/lib/rubocop/cop/{metrics → layout}/line_length.rb +92 -130
  127. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +2 -5
  128. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +2 -5
  129. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +11 -15
  130. data/lib/rubocop/cop/layout/multiline_block_layout.rb +70 -27
  131. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +2 -9
  132. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +2 -5
  133. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +7 -11
  134. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +2 -5
  135. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +8 -4
  136. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +2 -5
  137. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +13 -4
  138. data/lib/rubocop/cop/layout/{align_parameters.rb → parameter_alignment.rb} +1 -1
  139. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +59 -26
  140. data/lib/rubocop/cop/layout/space_after_colon.rb +12 -8
  141. data/lib/rubocop/cop/layout/space_after_comma.rb +2 -5
  142. data/lib/rubocop/cop/layout/space_after_method_name.rb +5 -6
  143. data/lib/rubocop/cop/layout/space_after_not.rb +9 -11
  144. data/lib/rubocop/cop/layout/space_after_semicolon.rb +2 -5
  145. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +47 -42
  146. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +17 -21
  147. data/lib/rubocop/cop/layout/space_around_keyword.rb +31 -20
  148. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  149. data/lib/rubocop/cop/layout/space_around_operators.rb +127 -44
  150. data/lib/rubocop/cop/layout/space_before_block_braces.rb +54 -22
  151. data/lib/rubocop/cop/layout/space_before_comma.rb +3 -5
  152. data/lib/rubocop/cop/layout/space_before_comment.rb +9 -8
  153. data/lib/rubocop/cop/layout/space_before_first_arg.rb +15 -7
  154. data/lib/rubocop/cop/layout/space_before_semicolon.rb +2 -5
  155. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +17 -23
  156. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +32 -33
  157. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +3 -8
  158. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +37 -21
  159. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +21 -46
  160. data/lib/rubocop/cop/layout/space_inside_parens.rb +43 -26
  161. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +5 -10
  162. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +9 -18
  163. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +17 -27
  164. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +24 -41
  165. data/lib/rubocop/cop/layout/{trailing_blank_lines.rb → trailing_empty_lines.rb} +10 -15
  166. data/lib/rubocop/cop/layout/trailing_whitespace.rb +56 -16
  167. data/lib/rubocop/cop/legacy/corrections_proxy.rb +49 -0
  168. data/lib/rubocop/cop/legacy/corrector.rb +29 -0
  169. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +9 -4
  170. data/lib/rubocop/cop/lint/ambiguous_operator.rb +53 -5
  171. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +36 -6
  172. data/lib/rubocop/cop/lint/assignment_in_condition.rb +19 -6
  173. data/lib/rubocop/cop/lint/big_decimal_new.rb +10 -11
  174. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +50 -0
  175. data/lib/rubocop/cop/lint/boolean_symbol.rb +22 -2
  176. data/lib/rubocop/cop/lint/circular_argument_reference.rb +1 -1
  177. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +98 -0
  178. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  179. data/lib/rubocop/cop/lint/debugger.rb +18 -26
  180. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +7 -10
  181. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +141 -0
  182. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +9 -3
  183. data/lib/rubocop/cop/lint/duplicate_branch.rb +93 -0
  184. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +3 -13
  185. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  186. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +1 -1
  187. data/lib/rubocop/cop/lint/duplicate_methods.rb +10 -13
  188. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +77 -0
  189. data/lib/rubocop/cop/lint/duplicate_require.rb +46 -0
  190. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  191. data/lib/rubocop/cop/lint/each_with_object_argument.rb +4 -3
  192. data/lib/rubocop/cop/lint/else_layout.rb +30 -4
  193. data/lib/rubocop/cop/lint/empty_block.rb +82 -0
  194. data/lib/rubocop/cop/lint/empty_class.rb +93 -0
  195. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  196. data/lib/rubocop/cop/lint/empty_ensure.rb +5 -5
  197. data/lib/rubocop/cop/lint/empty_expression.rb +2 -2
  198. data/lib/rubocop/cop/lint/empty_file.rb +50 -0
  199. data/lib/rubocop/cop/lint/empty_interpolation.rb +8 -9
  200. data/lib/rubocop/cop/lint/empty_when.rb +31 -8
  201. data/lib/rubocop/cop/lint/ensure_return.rb +29 -14
  202. data/lib/rubocop/cop/lint/erb_new_arguments.rb +66 -8
  203. data/lib/rubocop/cop/lint/flip_flop.rb +9 -3
  204. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  205. data/lib/rubocop/cop/lint/float_out_of_range.rb +2 -2
  206. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +52 -41
  207. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +37 -0
  208. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +13 -14
  209. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  210. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +6 -5
  211. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +12 -15
  212. data/lib/rubocop/cop/lint/inherit_exception.rb +13 -8
  213. data/lib/rubocop/cop/lint/interpolation_check.rb +26 -5
  214. data/lib/rubocop/cop/lint/literal_as_condition.rb +24 -15
  215. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +46 -15
  216. data/lib/rubocop/cop/lint/loop.rb +30 -7
  217. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +8 -7
  218. data/lib/rubocop/cop/lint/missing_super.rb +102 -0
  219. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  220. data/lib/rubocop/cop/lint/{multiple_compare.rb → multiple_comparison.rb} +11 -12
  221. data/lib/rubocop/cop/lint/nested_method_definition.rb +20 -26
  222. data/lib/rubocop/cop/lint/nested_percent_literal.rb +16 -2
  223. data/lib/rubocop/cop/lint/next_without_accumulator.rb +2 -2
  224. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  225. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +160 -0
  226. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +10 -10
  227. data/lib/rubocop/cop/lint/number_conversion.rb +54 -23
  228. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +11 -13
  229. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +98 -0
  230. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +33 -12
  231. data/lib/rubocop/cop/lint/percent_string_array.rb +6 -11
  232. data/lib/rubocop/cop/lint/percent_symbol_array.rb +14 -13
  233. data/lib/rubocop/cop/lint/raise_exception.rb +86 -0
  234. data/lib/rubocop/cop/lint/rand_one.rb +4 -3
  235. data/lib/rubocop/cop/lint/{unneeded_cop_disable_directive.rb → redundant_cop_disable_directive.rb} +84 -76
  236. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +128 -0
  237. data/lib/rubocop/cop/lint/{unneeded_require_statement.rb → redundant_require_statement.rb} +9 -11
  238. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +78 -0
  239. data/lib/rubocop/cop/lint/{unneeded_splat_expansion.rb → redundant_splat_expansion.rb} +25 -16
  240. data/lib/rubocop/cop/lint/{string_conversion_in_interpolation.rb → redundant_string_coercion.rb} +11 -18
  241. data/lib/rubocop/cop/lint/redundant_with_index.rb +13 -16
  242. data/lib/rubocop/cop/lint/redundant_with_object.rb +13 -16
  243. data/lib/rubocop/cop/lint/regexp_as_condition.rb +6 -2
  244. data/lib/rubocop/cop/lint/require_parentheses.rb +2 -2
  245. data/lib/rubocop/cop/lint/rescue_exception.rb +2 -2
  246. data/lib/rubocop/cop/lint/rescue_type.rb +8 -9
  247. data/lib/rubocop/cop/lint/return_in_void_context.rb +2 -4
  248. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +11 -15
  249. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +14 -10
  250. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +11 -3
  251. data/lib/rubocop/cop/lint/script_permission.rb +10 -7
  252. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  253. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +87 -0
  254. data/lib/rubocop/cop/lint/shadowed_argument.rb +3 -3
  255. data/lib/rubocop/cop/lint/shadowed_exception.rb +12 -13
  256. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +20 -7
  257. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  258. data/lib/rubocop/cop/lint/{handle_exceptions.rb → suppressed_exception.rb} +21 -27
  259. data/lib/rubocop/cop/lint/syntax.rb +11 -28
  260. data/lib/rubocop/cop/lint/to_enum_arguments.rb +86 -0
  261. data/lib/rubocop/cop/lint/to_json.rb +21 -12
  262. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  263. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +57 -0
  264. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +4 -4
  265. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +85 -0
  266. data/lib/rubocop/cop/lint/unified_integer.rb +5 -9
  267. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +199 -0
  268. data/lib/rubocop/cop/lint/unreachable_code.rb +3 -3
  269. data/lib/rubocop/cop/lint/unreachable_loop.rb +171 -0
  270. data/lib/rubocop/cop/lint/unused_block_argument.rb +30 -9
  271. data/lib/rubocop/cop/lint/unused_method_argument.rb +63 -14
  272. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +5 -3
  273. data/lib/rubocop/cop/lint/uri_regexp.rb +12 -47
  274. data/lib/rubocop/cop/lint/useless_access_modifier.rb +95 -47
  275. data/lib/rubocop/cop/lint/useless_assignment.rb +7 -6
  276. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +7 -11
  277. data/lib/rubocop/cop/lint/useless_method_definition.rb +68 -0
  278. data/lib/rubocop/cop/lint/useless_setter_call.rb +15 -8
  279. data/lib/rubocop/cop/lint/useless_times.rb +106 -0
  280. data/lib/rubocop/cop/lint/void.rb +10 -33
  281. data/lib/rubocop/cop/message_annotator.rb +16 -7
  282. data/lib/rubocop/cop/metrics/abc_size.rb +27 -3
  283. data/lib/rubocop/cop/metrics/block_length.rb +40 -10
  284. data/lib/rubocop/cop/metrics/block_nesting.rb +2 -2
  285. data/lib/rubocop/cop/metrics/class_length.rb +39 -8
  286. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +37 -4
  287. data/lib/rubocop/cop/metrics/method_length.rb +33 -5
  288. data/lib/rubocop/cop/metrics/module_length.rb +27 -4
  289. data/lib/rubocop/cop/metrics/parameter_lists.rb +71 -9
  290. data/lib/rubocop/cop/metrics/perceived_complexity.rb +7 -8
  291. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +95 -14
  292. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +158 -0
  293. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  294. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +146 -0
  295. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  296. data/lib/rubocop/cop/migration/department_name.rb +83 -0
  297. data/lib/rubocop/cop/mixin/alignment.rb +8 -6
  298. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  299. data/lib/rubocop/cop/mixin/annotation_comment.rb +5 -0
  300. data/lib/rubocop/cop/mixin/array_min_size.rb +2 -4
  301. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  302. data/lib/rubocop/cop/mixin/check_line_breakable.rb +20 -17
  303. data/lib/rubocop/cop/mixin/code_length.rb +26 -5
  304. data/lib/rubocop/cop/mixin/comments_help.rb +48 -0
  305. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +5 -3
  306. data/lib/rubocop/cop/mixin/configurable_formatting.rb +3 -5
  307. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  308. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  309. data/lib/rubocop/cop/mixin/def_node.rb +1 -1
  310. data/lib/rubocop/cop/mixin/documentation_comment.rb +2 -4
  311. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +8 -7
  312. data/lib/rubocop/cop/mixin/empty_parameter.rb +4 -2
  313. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +18 -2
  314. data/lib/rubocop/cop/mixin/enforce_superclass.rb +15 -5
  315. data/lib/rubocop/cop/mixin/first_element_line_break.rb +4 -2
  316. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +15 -6
  317. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +5 -1
  318. data/lib/rubocop/cop/mixin/hash_transform_method.rb +197 -0
  319. data/lib/rubocop/cop/mixin/ignored_methods.rb +36 -3
  320. data/lib/rubocop/cop/mixin/ignored_pattern.rb +1 -1
  321. data/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  322. data/lib/rubocop/cop/mixin/line_length_help.rb +87 -0
  323. data/lib/rubocop/cop/mixin/method_complexity.rb +24 -4
  324. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +3 -1
  325. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +5 -5
  326. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +13 -12
  327. data/lib/rubocop/cop/mixin/negative_conditional.rb +2 -2
  328. data/lib/rubocop/cop/mixin/nil_methods.rb +4 -6
  329. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +6 -1
  330. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  331. data/lib/rubocop/cop/mixin/percent_array.rb +16 -9
  332. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +88 -1
  333. data/lib/rubocop/cop/mixin/range_help.rb +19 -5
  334. data/lib/rubocop/cop/mixin/rational_literal.rb +18 -0
  335. data/lib/rubocop/cop/mixin/rescue_node.rb +11 -1
  336. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +4 -3
  337. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +4 -3
  338. data/lib/rubocop/cop/mixin/statement_modifier.rb +51 -23
  339. data/lib/rubocop/cop/mixin/string_help.rb +4 -1
  340. data/lib/rubocop/cop/mixin/string_literals_help.rb +1 -1
  341. data/lib/rubocop/cop/mixin/surrounding_space.rb +19 -33
  342. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  343. data/lib/rubocop/cop/mixin/trailing_comma.rb +27 -33
  344. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +13 -18
  345. data/lib/rubocop/cop/mixin/unused_argument.rb +4 -6
  346. data/lib/rubocop/cop/mixin/visibility_help.rb +36 -0
  347. data/lib/rubocop/cop/naming/accessor_method_name.rb +19 -3
  348. data/lib/rubocop/cop/naming/ascii_identifiers.rb +29 -6
  349. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +16 -6
  350. data/lib/rubocop/cop/naming/{uncommunicative_block_param_name.rb → block_parameter_name.rb} +3 -3
  351. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +13 -3
  352. data/lib/rubocop/cop/naming/constant_name.rb +5 -4
  353. data/lib/rubocop/cop/naming/file_name.rb +40 -22
  354. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +12 -6
  355. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +8 -8
  356. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +69 -20
  357. data/lib/rubocop/cop/naming/method_name.rb +39 -2
  358. data/lib/rubocop/cop/naming/{uncommunicative_method_param_name.rb → method_parameter_name.rb} +3 -3
  359. data/lib/rubocop/cop/naming/predicate_name.rb +12 -15
  360. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +27 -28
  361. data/lib/rubocop/cop/naming/variable_name.rb +2 -1
  362. data/lib/rubocop/cop/naming/variable_number.rb +101 -9
  363. data/lib/rubocop/cop/offense.rb +62 -12
  364. data/lib/rubocop/cop/registry.rb +97 -11
  365. data/lib/rubocop/cop/security/eval.rb +4 -3
  366. data/lib/rubocop/cop/security/json_load.rb +8 -9
  367. data/lib/rubocop/cop/security/marshal_load.rb +4 -5
  368. data/lib/rubocop/cop/security/open.rb +15 -12
  369. data/lib/rubocop/cop/security/yaml_load.rb +8 -7
  370. data/lib/rubocop/cop/severity.rb +1 -11
  371. data/lib/rubocop/cop/style/access_modifier_declarations.rb +36 -12
  372. data/lib/rubocop/cop/style/accessor_grouping.rb +152 -0
  373. data/lib/rubocop/cop/style/alias.rb +45 -38
  374. data/lib/rubocop/cop/style/and_or.rb +27 -22
  375. data/lib/rubocop/cop/style/arguments_forwarding.rb +142 -0
  376. data/lib/rubocop/cop/style/array_coercion.rb +67 -0
  377. data/lib/rubocop/cop/style/array_join.rb +8 -9
  378. data/lib/rubocop/cop/style/ascii_comments.rb +4 -4
  379. data/lib/rubocop/cop/style/attr.rb +22 -13
  380. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +7 -7
  381. data/lib/rubocop/cop/style/bare_percent_literals.rb +12 -14
  382. data/lib/rubocop/cop/style/begin_block.rb +2 -2
  383. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +137 -0
  384. data/lib/rubocop/cop/style/block_comments.rb +14 -18
  385. data/lib/rubocop/cop/style/block_delimiters.rb +79 -27
  386. data/lib/rubocop/cop/style/case_equality.rb +54 -4
  387. data/lib/rubocop/cop/style/case_like_if.rb +248 -0
  388. data/lib/rubocop/cop/style/character_literal.rb +10 -11
  389. data/lib/rubocop/cop/style/class_and_module_children.rb +26 -16
  390. data/lib/rubocop/cop/style/class_check.rb +6 -11
  391. data/lib/rubocop/cop/style/class_equality_comparison.rb +64 -0
  392. data/lib/rubocop/cop/style/class_methods.rb +7 -11
  393. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  394. data/lib/rubocop/cop/style/class_vars.rb +23 -7
  395. data/lib/rubocop/cop/style/collection_compact.rb +91 -0
  396. data/lib/rubocop/cop/style/collection_methods.rb +13 -17
  397. data/lib/rubocop/cop/style/colon_method_call.rb +9 -10
  398. data/lib/rubocop/cop/style/colon_method_definition.rb +6 -6
  399. data/lib/rubocop/cop/style/combinable_loops.rb +91 -0
  400. data/lib/rubocop/cop/style/command_literal.rb +24 -25
  401. data/lib/rubocop/cop/style/comment_annotation.rb +23 -17
  402. data/lib/rubocop/cop/style/commented_keyword.rb +23 -35
  403. data/lib/rubocop/cop/style/conditional_assignment.rb +77 -82
  404. data/lib/rubocop/cop/style/constant_visibility.rb +17 -5
  405. data/lib/rubocop/cop/style/copyright.rb +27 -23
  406. data/lib/rubocop/cop/style/date_time.rb +17 -6
  407. data/lib/rubocop/cop/style/def_with_parentheses.rb +8 -10
  408. data/lib/rubocop/cop/style/dir.rb +11 -13
  409. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +47 -0
  410. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  411. data/lib/rubocop/cop/style/documentation.rb +62 -15
  412. data/lib/rubocop/cop/style/documentation_method.rb +46 -2
  413. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  414. data/lib/rubocop/cop/style/double_negation.rb +49 -6
  415. data/lib/rubocop/cop/style/each_for_simple_loop.rb +6 -9
  416. data/lib/rubocop/cop/style/each_with_object.rb +17 -20
  417. data/lib/rubocop/cop/style/empty_block_parameter.rb +9 -10
  418. data/lib/rubocop/cop/style/empty_case_condition.rb +29 -28
  419. data/lib/rubocop/cop/style/empty_else.rb +17 -19
  420. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +9 -10
  421. data/lib/rubocop/cop/style/empty_literal.rb +26 -27
  422. data/lib/rubocop/cop/style/empty_method.rb +13 -20
  423. data/lib/rubocop/cop/style/encoding.rb +6 -10
  424. data/lib/rubocop/cop/style/end_block.rb +6 -2
  425. data/lib/rubocop/cop/style/eval_with_location.rb +10 -10
  426. data/lib/rubocop/cop/style/even_odd.rb +10 -13
  427. data/lib/rubocop/cop/style/expand_path_arguments.rb +30 -29
  428. data/lib/rubocop/cop/style/explicit_block_argument.rb +106 -0
  429. data/lib/rubocop/cop/style/exponential_notation.rb +117 -0
  430. data/lib/rubocop/cop/style/float_division.rb +136 -0
  431. data/lib/rubocop/cop/style/for.rb +7 -15
  432. data/lib/rubocop/cop/style/format_string.rb +48 -37
  433. data/lib/rubocop/cop/style/format_string_token.rb +70 -77
  434. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +113 -65
  435. data/lib/rubocop/cop/style/global_std_stream.rb +65 -0
  436. data/lib/rubocop/cop/style/global_vars.rb +2 -2
  437. data/lib/rubocop/cop/style/guard_clause.rb +69 -16
  438. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  439. data/lib/rubocop/cop/style/hash_each_methods.rb +86 -0
  440. data/lib/rubocop/cop/style/hash_like_case.rb +76 -0
  441. data/lib/rubocop/cop/style/hash_syntax.rb +32 -23
  442. data/lib/rubocop/cop/style/hash_transform_keys.rb +91 -0
  443. data/lib/rubocop/cop/style/hash_transform_values.rb +88 -0
  444. data/lib/rubocop/cop/style/identical_conditional_branches.rb +9 -4
  445. data/lib/rubocop/cop/style/if_inside_else.rb +80 -2
  446. data/lib/rubocop/cop/style/if_unless_modifier.rb +124 -44
  447. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +11 -3
  448. data/lib/rubocop/cop/style/if_with_semicolon.rb +51 -3
  449. data/lib/rubocop/cop/style/implicit_runtime_error.rb +2 -1
  450. data/lib/rubocop/cop/style/infinite_loop.rb +33 -28
  451. data/lib/rubocop/cop/style/inline_comment.rb +4 -4
  452. data/lib/rubocop/cop/style/inverse_methods.rb +39 -39
  453. data/lib/rubocop/cop/style/ip_addresses.rb +6 -6
  454. data/lib/rubocop/cop/style/keyword_parameters_order.rb +65 -0
  455. data/lib/rubocop/cop/style/lambda.rb +9 -15
  456. data/lib/rubocop/cop/style/lambda_call.rb +17 -34
  457. data/lib/rubocop/cop/style/line_end_concatenation.rb +33 -26
  458. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +169 -0
  459. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +44 -0
  460. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +32 -226
  461. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +18 -10
  462. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +12 -3
  463. data/lib/rubocop/cop/style/method_def_parentheses.rb +21 -22
  464. data/lib/rubocop/cop/style/min_max.rb +9 -13
  465. data/lib/rubocop/cop/style/missing_else.rb +11 -21
  466. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +10 -3
  467. data/lib/rubocop/cop/style/mixin_grouping.rb +26 -33
  468. data/lib/rubocop/cop/style/mixin_usage.rb +12 -21
  469. data/lib/rubocop/cop/style/module_function.rb +64 -21
  470. data/lib/rubocop/cop/style/multiline_block_chain.rb +12 -3
  471. data/lib/rubocop/cop/style/multiline_if_modifier.rb +4 -11
  472. data/lib/rubocop/cop/style/multiline_if_then.rb +5 -11
  473. data/lib/rubocop/cop/style/multiline_memoization.rb +16 -14
  474. data/lib/rubocop/cop/style/multiline_method_signature.rb +2 -2
  475. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +31 -9
  476. data/lib/rubocop/cop/style/multiline_when_then.rb +73 -0
  477. data/lib/rubocop/cop/style/multiple_comparison.rb +56 -8
  478. data/lib/rubocop/cop/style/mutable_constant.rb +30 -29
  479. data/lib/rubocop/cop/style/negated_if.rb +9 -9
  480. data/lib/rubocop/cop/style/negated_if_else_condition.rb +106 -0
  481. data/lib/rubocop/cop/style/negated_unless.rb +9 -9
  482. data/lib/rubocop/cop/style/negated_while.rb +7 -15
  483. data/lib/rubocop/cop/style/nested_modifier.rb +31 -16
  484. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +21 -22
  485. data/lib/rubocop/cop/style/nested_ternary_operator.rb +29 -2
  486. data/lib/rubocop/cop/style/next.rb +19 -23
  487. data/lib/rubocop/cop/style/nil_comparison.rb +13 -11
  488. data/lib/rubocop/cop/style/nil_lambda.rb +52 -0
  489. data/lib/rubocop/cop/style/non_nil_check.rb +55 -35
  490. data/lib/rubocop/cop/style/not.rb +20 -26
  491. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +6 -11
  492. data/lib/rubocop/cop/style/numeric_literals.rb +21 -14
  493. data/lib/rubocop/cop/style/numeric_predicate.rb +14 -19
  494. data/lib/rubocop/cop/style/one_line_conditional.rb +76 -29
  495. data/lib/rubocop/cop/style/option_hash.rb +5 -5
  496. data/lib/rubocop/cop/style/optional_arguments.rb +2 -2
  497. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  498. data/lib/rubocop/cop/style/or_assignment.rb +24 -15
  499. data/lib/rubocop/cop/style/parallel_assignment.rb +18 -18
  500. data/lib/rubocop/cop/style/parentheses_around_condition.rb +21 -7
  501. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +21 -27
  502. data/lib/rubocop/cop/style/percent_q_literals.rb +8 -10
  503. data/lib/rubocop/cop/style/perl_backrefs.rb +91 -16
  504. data/lib/rubocop/cop/style/preferred_hash_methods.rb +11 -14
  505. data/lib/rubocop/cop/style/proc.rb +7 -7
  506. data/lib/rubocop/cop/style/raise_args.rb +33 -30
  507. data/lib/rubocop/cop/style/random_with_offset.rb +29 -34
  508. data/lib/rubocop/cop/style/redundant_argument.rb +88 -0
  509. data/lib/rubocop/cop/style/redundant_assignment.rb +107 -0
  510. data/lib/rubocop/cop/style/redundant_begin.rb +35 -9
  511. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +6 -9
  512. data/lib/rubocop/cop/style/{unneeded_condition.rb → redundant_condition.rb} +43 -15
  513. data/lib/rubocop/cop/style/redundant_conditional.rb +11 -11
  514. data/lib/rubocop/cop/style/redundant_exception.rb +21 -15
  515. data/lib/rubocop/cop/style/redundant_fetch_block.rb +113 -0
  516. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +51 -0
  517. data/lib/rubocop/cop/style/redundant_freeze.rb +7 -9
  518. data/lib/rubocop/cop/style/{unneeded_interpolation.rb → redundant_interpolation.rb} +31 -25
  519. data/lib/rubocop/cop/style/redundant_parentheses.rb +53 -32
  520. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +13 -15
  521. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +104 -0
  522. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +121 -0
  523. data/lib/rubocop/cop/style/redundant_return.rb +52 -44
  524. data/lib/rubocop/cop/style/redundant_self.rb +36 -21
  525. data/lib/rubocop/cop/style/redundant_self_assignment.rb +116 -0
  526. data/lib/rubocop/cop/style/{unneeded_sort.rb → redundant_sort.rb} +31 -34
  527. data/lib/rubocop/cop/style/redundant_sort_by.rb +6 -10
  528. data/lib/rubocop/cop/style/regexp_literal.rb +10 -21
  529. data/lib/rubocop/cop/style/rescue_modifier.rb +53 -9
  530. data/lib/rubocop/cop/style/rescue_standard_error.rb +23 -19
  531. data/lib/rubocop/cop/style/return_nil.rb +7 -7
  532. data/lib/rubocop/cop/style/safe_navigation.rb +54 -20
  533. data/lib/rubocop/cop/style/sample.rb +14 -16
  534. data/lib/rubocop/cop/style/self_assignment.rb +26 -22
  535. data/lib/rubocop/cop/style/semicolon.rb +23 -12
  536. data/lib/rubocop/cop/style/send.rb +4 -5
  537. data/lib/rubocop/cop/style/signal_exception.rb +26 -20
  538. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  539. data/lib/rubocop/cop/style/single_line_block_params.rb +32 -7
  540. data/lib/rubocop/cop/style/single_line_methods.rb +26 -18
  541. data/lib/rubocop/cop/style/slicing_with_range.rb +37 -0
  542. data/lib/rubocop/cop/style/sole_nested_conditional.rb +128 -0
  543. data/lib/rubocop/cop/style/special_global_vars.rb +18 -41
  544. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +17 -23
  545. data/lib/rubocop/cop/style/static_class.rb +97 -0
  546. data/lib/rubocop/cop/style/stderr_puts.rb +7 -8
  547. data/lib/rubocop/cop/style/string_concatenation.rb +143 -0
  548. data/lib/rubocop/cop/style/string_hash_keys.rb +8 -9
  549. data/lib/rubocop/cop/style/string_literals.rb +14 -8
  550. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +4 -3
  551. data/lib/rubocop/cop/style/string_methods.rb +7 -17
  552. data/lib/rubocop/cop/style/strip.rb +10 -15
  553. data/lib/rubocop/cop/style/struct_inheritance.rb +23 -5
  554. data/lib/rubocop/cop/style/swap_values.rb +108 -0
  555. data/lib/rubocop/cop/style/symbol_array.rb +13 -24
  556. data/lib/rubocop/cop/style/symbol_literal.rb +6 -8
  557. data/lib/rubocop/cop/style/symbol_proc.rb +22 -24
  558. data/lib/rubocop/cop/style/ternary_parentheses.rb +57 -31
  559. data/lib/rubocop/cop/style/trailing_body_on_class.rb +3 -6
  560. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +4 -7
  561. data/lib/rubocop/cop/style/trailing_body_on_module.rb +3 -6
  562. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +39 -25
  563. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +43 -5
  564. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +90 -0
  565. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +46 -5
  566. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +9 -34
  567. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +19 -22
  568. data/lib/rubocop/cop/style/trivial_accessors.rb +36 -39
  569. data/lib/rubocop/cop/style/unless_else.rb +6 -9
  570. data/lib/rubocop/cop/style/unpack_first.rb +5 -12
  571. data/lib/rubocop/cop/style/variable_interpolation.rb +11 -24
  572. data/lib/rubocop/cop/style/when_then.rb +5 -7
  573. data/lib/rubocop/cop/style/while_until_do.rb +6 -16
  574. data/lib/rubocop/cop/style/while_until_modifier.rb +17 -22
  575. data/lib/rubocop/cop/style/word_array.rb +8 -26
  576. data/lib/rubocop/cop/style/yoda_condition.rb +29 -8
  577. data/lib/rubocop/cop/style/zero_length_predicate.rb +25 -27
  578. data/lib/rubocop/cop/team.rb +159 -87
  579. data/lib/rubocop/cop/util.rb +36 -19
  580. data/lib/rubocop/cop/utils/format_string.rb +135 -0
  581. data/lib/rubocop/cop/variable_force/assignment.rb +1 -0
  582. data/lib/rubocop/cop/variable_force/branch.rb +2 -7
  583. data/lib/rubocop/cop/variable_force/scope.rb +2 -1
  584. data/lib/rubocop/cop/variable_force/variable.rb +20 -8
  585. data/lib/rubocop/cop/variable_force.rb +16 -17
  586. data/lib/rubocop/cops_documentation_generator.rb +284 -0
  587. data/lib/rubocop/core_ext/hash.rb +20 -0
  588. data/lib/rubocop/core_ext/string.rb +2 -26
  589. data/lib/rubocop/directive_comment.rb +32 -0
  590. data/lib/rubocop/error.rb +24 -0
  591. data/lib/rubocop/ext/processed_source.rb +18 -0
  592. data/lib/rubocop/ext/regexp_node.rb +87 -0
  593. data/lib/rubocop/ext/regexp_parser.rb +95 -0
  594. data/lib/rubocop/file_finder.rb +13 -12
  595. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +2 -1
  596. data/lib/rubocop/formatter/base_formatter.rb +0 -4
  597. data/lib/rubocop/formatter/clang_style_formatter.rb +8 -5
  598. data/lib/rubocop/formatter/disabled_config_formatter.rb +36 -22
  599. data/lib/rubocop/formatter/emacs_style_formatter.rb +24 -9
  600. data/lib/rubocop/formatter/file_list_formatter.rb +1 -1
  601. data/lib/rubocop/formatter/formatter_set.rb +20 -19
  602. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +47 -0
  603. data/lib/rubocop/formatter/html_formatter.rb +2 -0
  604. data/lib/rubocop/formatter/json_formatter.rb +6 -5
  605. data/lib/rubocop/formatter/junit_formatter.rb +84 -0
  606. data/lib/rubocop/formatter/offense_count_formatter.rb +1 -1
  607. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  608. data/lib/rubocop/formatter/progress_formatter.rb +2 -1
  609. data/lib/rubocop/formatter/quiet_formatter.rb +1 -1
  610. data/lib/rubocop/formatter/simple_text_formatter.rb +54 -10
  611. data/lib/rubocop/formatter/tap_formatter.rb +19 -6
  612. data/lib/rubocop/formatter/worst_offenders_formatter.rb +1 -1
  613. data/lib/rubocop/lockfile.rb +40 -0
  614. data/lib/rubocop/magic_comment.rb +7 -3
  615. data/lib/rubocop/name_similarity.rb +18 -10
  616. data/lib/rubocop/options.rb +131 -60
  617. data/lib/rubocop/path_util.rb +19 -19
  618. data/lib/rubocop/platform.rb +1 -1
  619. data/lib/rubocop/rake_task.rb +10 -11
  620. data/lib/rubocop/remote_config.rb +2 -3
  621. data/lib/rubocop/result_cache.rb +69 -27
  622. data/lib/rubocop/rspec/cop_helper.rb +11 -32
  623. data/lib/rubocop/rspec/expect_offense.rb +107 -25
  624. data/lib/rubocop/rspec/shared_contexts.rb +89 -40
  625. data/lib/rubocop/rspec/support.rb +0 -1
  626. data/lib/rubocop/runner.rb +127 -73
  627. data/lib/rubocop/string_interpreter.rb +3 -0
  628. data/lib/rubocop/target_finder.rb +61 -48
  629. data/lib/rubocop/target_ruby.rb +224 -0
  630. data/lib/rubocop/version.rb +65 -7
  631. data/lib/rubocop/yaml_duplication_checker.rb +9 -2
  632. data/lib/rubocop.rb +172 -145
  633. metadata +230 -184
  634. data/bin/console +0 -9
  635. data/bin/setup +0 -7
  636. data/lib/rubocop/ast/builder.rb +0 -79
  637. data/lib/rubocop/ast/node/alias_node.rb +0 -24
  638. data/lib/rubocop/ast/node/and_node.rb +0 -29
  639. data/lib/rubocop/ast/node/args_node.rb +0 -29
  640. data/lib/rubocop/ast/node/array_node.rb +0 -57
  641. data/lib/rubocop/ast/node/block_node.rb +0 -115
  642. data/lib/rubocop/ast/node/break_node.rb +0 -17
  643. data/lib/rubocop/ast/node/case_node.rb +0 -56
  644. data/lib/rubocop/ast/node/class_node.rb +0 -31
  645. data/lib/rubocop/ast/node/def_node.rb +0 -71
  646. data/lib/rubocop/ast/node/defined_node.rb +0 -17
  647. data/lib/rubocop/ast/node/ensure_node.rb +0 -17
  648. data/lib/rubocop/ast/node/for_node.rb +0 -53
  649. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  650. data/lib/rubocop/ast/node/if_node.rb +0 -175
  651. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  652. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -16
  653. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -43
  654. data/lib/rubocop/ast/node/mixin/collection_node.rb +0 -15
  655. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  656. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  657. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -261
  658. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -114
  659. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  660. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -61
  661. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  662. data/lib/rubocop/ast/node/module_node.rb +0 -24
  663. data/lib/rubocop/ast/node/or_node.rb +0 -29
  664. data/lib/rubocop/ast/node/pair_node.rb +0 -63
  665. data/lib/rubocop/ast/node/range_node.rb +0 -18
  666. data/lib/rubocop/ast/node/regexp_node.rb +0 -35
  667. data/lib/rubocop/ast/node/resbody_node.rb +0 -29
  668. data/lib/rubocop/ast/node/retry_node.rb +0 -17
  669. data/lib/rubocop/ast/node/self_class_node.rb +0 -24
  670. data/lib/rubocop/ast/node/send_node.rb +0 -13
  671. data/lib/rubocop/ast/node/str_node.rb +0 -16
  672. data/lib/rubocop/ast/node/super_node.rb +0 -21
  673. data/lib/rubocop/ast/node/symbol_node.rb +0 -12
  674. data/lib/rubocop/ast/node/until_node.rb +0 -35
  675. data/lib/rubocop/ast/node/when_node.rb +0 -53
  676. data/lib/rubocop/ast/node/while_node.rb +0 -35
  677. data/lib/rubocop/ast/node/yield_node.rb +0 -21
  678. data/lib/rubocop/ast/node.rb +0 -646
  679. data/lib/rubocop/ast/sexp.rb +0 -16
  680. data/lib/rubocop/ast/traversal.rb +0 -183
  681. data/lib/rubocop/cop/layout/align_array.rb +0 -39
  682. data/lib/rubocop/cop/layout/indent_heredoc.rb +0 -256
  683. data/lib/rubocop/cop/layout/tab.rb +0 -87
  684. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  685. data/lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb +0 -116
  686. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  687. data/lib/rubocop/cop/mixin/classish_length.rb +0 -37
  688. data/lib/rubocop/cop/mixin/ignored_method_patterns.rb +0 -19
  689. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -37
  690. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  691. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  692. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -35
  693. data/lib/rubocop/cop/rails/action_filter.rb +0 -117
  694. data/lib/rubocop/cop/rails/active_record_aliases.rb +0 -48
  695. data/lib/rubocop/cop/rails/active_record_override.rb +0 -82
  696. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -69
  697. data/lib/rubocop/cop/rails/application_job.rb +0 -40
  698. data/lib/rubocop/cop/rails/application_record.rb +0 -40
  699. data/lib/rubocop/cop/rails/assert_not.rb +0 -44
  700. data/lib/rubocop/cop/rails/belongs_to.rb +0 -102
  701. data/lib/rubocop/cop/rails/blank.rb +0 -164
  702. data/lib/rubocop/cop/rails/bulk_change_table.rb +0 -289
  703. data/lib/rubocop/cop/rails/create_table_with_timestamps.rb +0 -91
  704. data/lib/rubocop/cop/rails/date.rb +0 -161
  705. data/lib/rubocop/cop/rails/delegate.rb +0 -132
  706. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -37
  707. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -91
  708. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -45
  709. data/lib/rubocop/cop/rails/environment_comparison.rb +0 -68
  710. data/lib/rubocop/cop/rails/exit.rb +0 -67
  711. data/lib/rubocop/cop/rails/file_path.rb +0 -108
  712. data/lib/rubocop/cop/rails/find_by.rb +0 -55
  713. data/lib/rubocop/cop/rails/find_each.rb +0 -51
  714. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -25
  715. data/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +0 -106
  716. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -117
  717. data/lib/rubocop/cop/rails/http_status.rb +0 -179
  718. data/lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb +0 -94
  719. data/lib/rubocop/cop/rails/inverse_of.rb +0 -246
  720. data/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +0 -175
  721. data/lib/rubocop/cop/rails/link_to_blank.rb +0 -98
  722. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  723. data/lib/rubocop/cop/rails/output.rb +0 -49
  724. data/lib/rubocop/cop/rails/output_safety.rb +0 -99
  725. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -107
  726. data/lib/rubocop/cop/rails/presence.rb +0 -124
  727. data/lib/rubocop/cop/rails/present.rb +0 -153
  728. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -74
  729. data/lib/rubocop/cop/rails/redundant_allow_nil.rb +0 -111
  730. data/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +0 -136
  731. data/lib/rubocop/cop/rails/reflection_class_name.rb +0 -37
  732. data/lib/rubocop/cop/rails/refute_methods.rb +0 -76
  733. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -93
  734. data/lib/rubocop/cop/rails/request_referer.rb +0 -56
  735. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -286
  736. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -87
  737. data/lib/rubocop/cop/rails/save_bang.rb +0 -316
  738. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  739. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -87
  740. data/lib/rubocop/cop/rails/time_zone.rb +0 -238
  741. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -105
  742. data/lib/rubocop/cop/rails/unknown_env.rb +0 -63
  743. data/lib/rubocop/cop/rails/validation.rb +0 -109
  744. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -190
  745. data/lib/rubocop/cop/style/method_missing_super.rb +0 -34
  746. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  747. data/lib/rubocop/node_pattern.rb +0 -720
  748. data/lib/rubocop/processed_source.rb +0 -208
  749. data/lib/rubocop/rspec/shared_examples.rb +0 -59
  750. data/lib/rubocop/string_util.rb +0 -14
  751. data/lib/rubocop/token.rb +0 -114
@@ -0,0 +1,65 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # This cop enforces that optional keyword parameters are placed at the
7
+ # end of the parameters list.
8
+ #
9
+ # This improves readability, because when looking through the source,
10
+ # it is expected to find required parameters at the beginning of parameters list
11
+ # and optional parameters at the end.
12
+ #
13
+ # @example
14
+ # # bad
15
+ # def some_method(first: false, second:, third: 10)
16
+ # # body omitted
17
+ # end
18
+ #
19
+ # # good
20
+ # def some_method(second:, first: false, third: 10)
21
+ # # body omitted
22
+ # end
23
+ #
24
+ class KeywordParametersOrder < Base
25
+ include RangeHelp
26
+ extend AutoCorrector
27
+
28
+ MSG = 'Place optional keyword parameters at the end of the parameters list.'
29
+
30
+ def on_kwoptarg(node)
31
+ kwarg_nodes = node.right_siblings.select(&:kwarg_type?)
32
+ return if kwarg_nodes.empty?
33
+
34
+ add_offense(node) do |corrector|
35
+ if node.parent.find(&:kwoptarg_type?) == node
36
+ corrector.insert_before(node, "#{kwarg_nodes.map(&:source).join(', ')}, ")
37
+
38
+ arguments = node.each_ancestor(:def, :defs).first.arguments
39
+ append_newline_to_last_kwoptarg(arguments, corrector) unless parentheses?(arguments)
40
+
41
+ remove_kwargs(kwarg_nodes, corrector)
42
+ end
43
+ end
44
+ end
45
+
46
+ private
47
+
48
+ def append_newline_to_last_kwoptarg(arguments, corrector)
49
+ last_argument = arguments.last
50
+ return if last_argument.kwrestarg_type? || last_argument.blockarg_type?
51
+
52
+ last_kwoptarg = arguments.reverse.find(&:kwoptarg_type?)
53
+ corrector.insert_after(last_kwoptarg, "\n")
54
+ end
55
+
56
+ def remove_kwargs(kwarg_nodes, corrector)
57
+ kwarg_nodes.each do |kwarg|
58
+ with_space = range_with_surrounding_space(range: kwarg.source_range)
59
+ corrector.remove(range_with_surrounding_comma(with_space, :left))
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
@@ -46,8 +46,9 @@ module RuboCop
46
46
  # f = ->(x) do
47
47
  # x
48
48
  # end
49
- class Lambda < Cop
49
+ class Lambda < Base
50
50
  include ConfigurableEnforcedStyle
51
+ extend AutoCorrector
51
52
 
52
53
  LITERAL_MESSAGE = 'Use the `-> { ... }` lambda literal syntax for ' \
53
54
  '%<modifier>s lambdas.'
@@ -62,8 +63,6 @@ module RuboCop
62
63
  }
63
64
  }.freeze
64
65
 
65
- def_node_matcher :lambda_node?, '(block $(send nil? :lambda) ...)'
66
-
67
66
  def on_block(node)
68
67
  return unless node.lambda?
69
68
 
@@ -71,20 +70,15 @@ module RuboCop
71
70
 
72
71
  return unless offending_selector?(node, selector)
73
72
 
74
- add_offense(node,
75
- location: node.send_node.source_range,
76
- message: message(node, selector))
77
- end
78
-
79
- def autocorrect(node)
80
- if node.send_node.source == 'lambda'
81
- lambda do |corrector|
73
+ add_offense(node.send_node.source_range, message: message(node, selector)) do |corrector|
74
+ if node.send_node.source == 'lambda'
82
75
  autocorrect_method_to_literal(corrector, node)
76
+ else
77
+ LambdaLiteralToMethodCorrector.new(node).call(corrector)
83
78
  end
84
- else
85
- LambdaLiteralToMethodCorrector.new(node)
86
79
  end
87
80
  end
81
+ alias on_numblock on_block
88
82
 
89
83
  private
90
84
 
@@ -110,13 +104,13 @@ module RuboCop
110
104
  end
111
105
 
112
106
  def autocorrect_method_to_literal(corrector, node)
113
- corrector.replace(node.send_node.source_range, '->')
107
+ corrector.replace(node.send_node, '->')
114
108
 
115
109
  return unless node.arguments?
116
110
 
117
111
  arg_str = "(#{lambda_arg_string(node.arguments)})"
118
112
 
119
- corrector.insert_after(node.send_node.source_range, arg_str)
113
+ corrector.insert_after(node.send_node, arg_str)
120
114
  corrector.remove(arguments_with_whitespace(node))
121
115
  end
122
116
 
@@ -18,30 +18,33 @@ module RuboCop
18
18
  #
19
19
  # # good
20
20
  # lambda.(x, y)
21
- class LambdaCall < Cop
21
+ class LambdaCall < Base
22
22
  include ConfigurableEnforcedStyle
23
+ extend AutoCorrector
24
+
25
+ RESTRICT_ON_SEND = %i[call].freeze
23
26
 
24
27
  def on_send(node)
25
- return unless node.receiver && node.method?(:call)
28
+ return unless node.receiver
26
29
 
27
- if offense?(node)
28
- add_offense(node) { opposite_style_detected }
30
+ if offense?(node) && opposite_style_detected
31
+ add_offense(node) do |corrector|
32
+ autocorrect(corrector, node)
33
+ end
29
34
  else
30
35
  correct_style_detected
31
36
  end
32
37
  end
33
38
 
34
- def autocorrect(node)
35
- lambda do |corrector|
36
- if explicit_style?
37
- receiver = node.receiver.source
38
- replacement = node.source.sub("#{receiver}.", "#{receiver}.call")
39
+ def autocorrect(corrector, node)
40
+ if explicit_style?
41
+ receiver = node.receiver.source
42
+ replacement = node.source.sub("#{receiver}.", "#{receiver}.call")
39
43
 
40
- corrector.replace(node.source_range, replacement)
41
- else
42
- add_parentheses(node, corrector) unless node.parenthesized?
43
- corrector.remove(node.loc.selector)
44
- end
44
+ corrector.replace(node, replacement)
45
+ else
46
+ add_parentheses(node, corrector) unless node.parenthesized?
47
+ corrector.remove(node.loc.selector)
45
48
  end
46
49
  end
47
50
 
@@ -52,26 +55,6 @@ module RuboCop
52
55
  implicit_style? && !node.implicit_call?
53
56
  end
54
57
 
55
- def add_parentheses(node, corrector)
56
- if node.arguments.empty?
57
- corrector.insert_after(node.source_range, '()')
58
- else
59
- corrector.replace(args_begin(node), '(')
60
- corrector.insert_after(args_end(node), ')')
61
- end
62
- end
63
-
64
- def args_begin(node)
65
- loc = node.loc
66
- selector =
67
- node.super_type? || node.yield_type? ? loc.keyword : loc.selector
68
- selector.end.resize(1)
69
- end
70
-
71
- def args_end(node)
72
- node.loc.expression.end
73
- end
74
-
75
58
  def message(_node)
76
59
  if explicit_style?
77
60
  'Prefer the use of `lambda.call(...)` over `lambda.(...)`.'
@@ -19,49 +19,36 @@ module RuboCop
19
19
  # some_str = 'ala' \
20
20
  # 'bala'
21
21
  #
22
- class LineEndConcatenation < Cop
22
+ class LineEndConcatenation < Base
23
23
  include RangeHelp
24
+ extend AutoCorrector
24
25
 
25
26
  MSG = 'Use `\\` instead of `+` or `<<` to concatenate ' \
26
27
  'those strings.'
27
28
  CONCAT_TOKEN_TYPES = %i[tPLUS tLSHFT].freeze
28
29
  SIMPLE_STRING_TOKEN_TYPE = :tSTRING
29
- COMPLEX_STRING_EDGE_TOKEN_TYPES = %i[tSTRING_BEG tSTRING_END].freeze
30
+ COMPLEX_STRING_BEGIN_TOKEN = :tSTRING_BEG
31
+ COMPLEX_STRING_END_TOKEN = :tSTRING_END
30
32
  HIGH_PRECEDENCE_OP_TOKEN_TYPES = %i[tSTAR2 tPERCENT tDOT
31
33
  tLBRACK2].freeze
32
34
  QUOTE_DELIMITERS = %w[' "].freeze
33
35
 
34
36
  def self.autocorrect_incompatible_with
35
- [Style::UnneededInterpolation]
37
+ [Style::RedundantInterpolation]
36
38
  end
37
39
 
38
- def investigate(processed_source)
40
+ def on_new_investigation
39
41
  processed_source.tokens.each_index do |index|
40
42
  check_token_set(index)
41
43
  end
42
44
  end
43
45
 
44
- def autocorrect(operator_range)
45
- # Include any trailing whitespace so we don't create a syntax error.
46
- operator_range = range_with_surrounding_space(range: operator_range,
47
- side: :right,
48
- newlines: false)
49
- one_more_char = operator_range.resize(operator_range.size + 1)
50
- # Don't create a double backslash at the end of the line, in case
51
- # there already was a backslash after the concatenation operator.
52
- operator_range = one_more_char if one_more_char.source.end_with?('\\')
53
-
54
- ->(corrector) { corrector.replace(operator_range, '\\') }
55
- end
56
-
57
46
  private
58
47
 
59
48
  def check_token_set(index)
60
49
  predecessor, operator, successor = processed_source.tokens[index, 3]
61
50
 
62
- return unless eligible_successor?(successor) &&
63
- eligible_operator?(operator) &&
64
- eligible_predecessor?(predecessor)
51
+ return unless eligible_token_set?(predecessor, operator, successor)
65
52
 
66
53
  return if operator.line == successor.line
67
54
 
@@ -69,7 +56,28 @@ module RuboCop
69
56
 
70
57
  return unless eligible_next_successor?(next_successor)
71
58
 
72
- add_offense(operator.pos, location: operator.pos)
59
+ add_offense(operator.pos) do |corrector|
60
+ autocorrect(corrector, operator.pos)
61
+ end
62
+ end
63
+
64
+ def autocorrect(corrector, operator_range)
65
+ # Include any trailing whitespace so we don't create a syntax error.
66
+ operator_range = range_with_surrounding_space(range: operator_range,
67
+ side: :right,
68
+ newlines: false)
69
+ one_more_char = operator_range.resize(operator_range.size + 1)
70
+ # Don't create a double backslash at the end of the line, in case
71
+ # there already was a backslash after the concatenation operator.
72
+ operator_range = one_more_char if one_more_char.source.end_with?('\\')
73
+
74
+ corrector.replace(operator_range, '\\')
75
+ end
76
+
77
+ def eligible_token_set?(predecessor, operator, successor)
78
+ eligible_successor?(successor) &&
79
+ eligible_operator?(operator) &&
80
+ eligible_predecessor?(predecessor)
73
81
  end
74
82
 
75
83
  def eligible_successor?(successor)
@@ -91,13 +99,12 @@ module RuboCop
91
99
 
92
100
  def token_after_last_string(successor, base_index)
93
101
  index = base_index + 3
94
- begin_token, end_token = COMPLEX_STRING_EDGE_TOKEN_TYPES
95
- if successor.type == begin_token
102
+ if successor.type == COMPLEX_STRING_BEGIN_TOKEN
96
103
  ends_to_find = 1
97
104
  while ends_to_find.positive?
98
105
  case processed_source.tokens[index].type
99
- when begin_token then ends_to_find += 1
100
- when end_token then ends_to_find -= 1
106
+ when COMPLEX_STRING_BEGIN_TOKEN then ends_to_find += 1
107
+ when COMPLEX_STRING_END_TOKEN then ends_to_find -= 1
101
108
  end
102
109
  index += 1
103
110
  end
@@ -109,7 +116,7 @@ module RuboCop
109
116
  case token.type
110
117
  when SIMPLE_STRING_TOKEN_TYPE
111
118
  true
112
- when *COMPLEX_STRING_EDGE_TOKEN_TYPES
119
+ when COMPLEX_STRING_BEGIN_TOKEN, COMPLEX_STRING_END_TOKEN
113
120
  QUOTE_DELIMITERS.include?(token.text)
114
121
  else
115
122
  false
@@ -0,0 +1,169 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ class MethodCallWithArgsParentheses
7
+ # Style omit_parentheses
8
+ module OmitParentheses
9
+ TRAILING_WHITESPACE_REGEX = /\s+\Z/.freeze
10
+ OMIT_MSG = 'Omit parentheses for method calls with arguments.'
11
+ private_constant :OMIT_MSG
12
+
13
+ private
14
+
15
+ def omit_parentheses(node)
16
+ return unless node.parenthesized?
17
+ return if node.implicit_call?
18
+ return if super_call_without_arguments?(node)
19
+ return if allowed_camel_case_method_call?(node)
20
+ return if legitimate_call_with_parentheses?(node)
21
+
22
+ add_offense(offense_range(node), message: OMIT_MSG) do |corrector|
23
+ if parentheses_at_the_end_of_multiline_call?(node)
24
+ corrector.replace(args_begin(node), ' \\')
25
+ else
26
+ corrector.replace(args_begin(node), ' ')
27
+ end
28
+ corrector.remove(node.loc.end)
29
+ end
30
+ end
31
+
32
+ def offense_range(node)
33
+ node.loc.begin.join(node.loc.end)
34
+ end
35
+
36
+ def super_call_without_arguments?(node)
37
+ node.super_type? && node.arguments.none?
38
+ end
39
+
40
+ def allowed_camel_case_method_call?(node)
41
+ node.camel_case_method? &&
42
+ (node.arguments.none? ||
43
+ cop_config['AllowParenthesesInCamelCaseMethod'])
44
+ end
45
+
46
+ def parentheses_at_the_end_of_multiline_call?(node)
47
+ node.multiline? &&
48
+ node.loc.begin.source_line
49
+ .gsub(TRAILING_WHITESPACE_REGEX, '')
50
+ .end_with?('(')
51
+ end
52
+
53
+ def legitimate_call_with_parentheses?(node)
54
+ call_in_literals?(node) ||
55
+ call_with_ambiguous_arguments?(node) ||
56
+ call_in_logical_operators?(node) ||
57
+ call_in_optional_arguments?(node) ||
58
+ call_in_single_line_inheritance?(node) ||
59
+ allowed_multiline_call_with_parentheses?(node) ||
60
+ allowed_chained_call_with_parentheses?(node)
61
+ end
62
+
63
+ def call_in_literals?(node)
64
+ node.parent &&
65
+ (node.parent.pair_type? ||
66
+ node.parent.array_type? ||
67
+ node.parent.range_type? ||
68
+ splat?(node.parent) ||
69
+ ternary_if?(node.parent))
70
+ end
71
+
72
+ def call_in_logical_operators?(node)
73
+ parent = node.parent&.block_type? ? node.parent.parent : node.parent
74
+ parent &&
75
+ (logical_operator?(parent) ||
76
+ parent.send_type? &&
77
+ parent.arguments.any? { |argument| logical_operator?(argument) })
78
+ end
79
+
80
+ def call_in_optional_arguments?(node)
81
+ node.parent &&
82
+ (node.parent.optarg_type? || node.parent.kwoptarg_type?)
83
+ end
84
+
85
+ def call_in_single_line_inheritance?(node)
86
+ node.parent&.class_type? && node.parent&.single_line?
87
+ end
88
+
89
+ def call_with_ambiguous_arguments?(node)
90
+ call_with_braced_block?(node) ||
91
+ call_as_argument_or_chain?(node) ||
92
+ hash_literal_in_arguments?(node) ||
93
+ node.descendants.any? do |n|
94
+ ambigious_literal?(n) || logical_operator?(n) ||
95
+ call_with_braced_block?(n)
96
+ end
97
+ end
98
+
99
+ def call_with_braced_block?(node)
100
+ (node.send_type? || node.super_type?) &&
101
+ node.block_node && node.block_node.braces?
102
+ end
103
+
104
+ def call_as_argument_or_chain?(node)
105
+ node.parent &&
106
+ (node.parent.send_type? && !assigned_before?(node.parent, node) ||
107
+ node.parent.csend_type? || node.parent.super_type?)
108
+ end
109
+
110
+ def hash_literal_in_arguments?(node)
111
+ node.arguments.any? do |n|
112
+ hash_literal?(n) ||
113
+ n.send_type? && node.descendants.any? { |descendant| hash_literal?(descendant) }
114
+ end
115
+ end
116
+
117
+ def allowed_multiline_call_with_parentheses?(node)
118
+ cop_config['AllowParenthesesInMultilineCall'] && node.multiline?
119
+ end
120
+
121
+ def allowed_chained_call_with_parentheses?(node)
122
+ return false unless cop_config['AllowParenthesesInChaining']
123
+
124
+ previous = node.descendants.first
125
+ return false unless previous&.send_type?
126
+
127
+ previous.parenthesized? ||
128
+ allowed_chained_call_with_parentheses?(previous)
129
+ end
130
+
131
+ def ambigious_literal?(node)
132
+ splat?(node) || ternary_if?(node) || regexp_slash_literal?(node) ||
133
+ unary_literal?(node)
134
+ end
135
+
136
+ def splat?(node)
137
+ node.splat_type? || node.kwsplat_type? || node.block_pass_type?
138
+ end
139
+
140
+ def ternary_if?(node)
141
+ node.if_type? && node.ternary?
142
+ end
143
+
144
+ def logical_operator?(node)
145
+ (node.and_type? || node.or_type?) && node.logical_operator?
146
+ end
147
+
148
+ def hash_literal?(node)
149
+ node.hash_type? && node.braces?
150
+ end
151
+
152
+ def regexp_slash_literal?(node)
153
+ node.regexp_type? && node.loc.begin.source == '/'
154
+ end
155
+
156
+ def unary_literal?(node)
157
+ node.numeric_type? && node.sign? ||
158
+ node.parent&.send_type? && node.parent&.unary_operation?
159
+ end
160
+
161
+ def assigned_before?(node, target)
162
+ node.assignment? &&
163
+ node.loc.operator.begin < target.loc.begin
164
+ end
165
+ end
166
+ end
167
+ end
168
+ end
169
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ class MethodCallWithArgsParentheses
7
+ # Style require_parentheses
8
+ module RequireParentheses
9
+ REQUIRE_MSG = 'Use parentheses for method calls with arguments.'
10
+ private_constant :REQUIRE_MSG
11
+
12
+ private
13
+
14
+ def require_parentheses(node)
15
+ return if ignored_method?(node.method_name)
16
+ return if matches_ignored_pattern?(node.method_name)
17
+ return if eligible_for_parentheses_omission?(node)
18
+ return unless node.arguments? && !node.parenthesized?
19
+
20
+ add_offense(node, message: REQUIRE_MSG) do |corrector|
21
+ corrector.replace(args_begin(node), '(')
22
+
23
+ corrector.insert_after(args_end(node), ')') unless args_parenthesized?(node)
24
+ end
25
+ end
26
+
27
+ def eligible_for_parentheses_omission?(node)
28
+ node.operator_method? || node.setter_method? || ignored_macro?(node)
29
+ end
30
+
31
+ def included_macros_list
32
+ cop_config.fetch('IncludedMacros', []).map(&:to_sym)
33
+ end
34
+
35
+ def ignored_macro?(node)
36
+ cop_config['IgnoreMacros'] &&
37
+ node.macro? &&
38
+ !included_macros_list.include?(node.method_name)
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end