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
@@ -5,7 +5,7 @@ module RuboCop
5
5
  module Layout
6
6
  # This cop checks the indentation of the first key in a hash literal
7
7
  # where the opening brace and the first key are on separate lines. The
8
- # other keys' indentations are handled by the AlignHash cop.
8
+ # other keys' indentations are handled by the HashAlignment cop.
9
9
  #
10
10
  # By default, Hash literals that are arguments in a method call with
11
11
  # parentheses, and where the opening curly brace of the hash is on the
@@ -77,7 +77,7 @@ module RuboCop
77
77
  # and_now_for_something = {
78
78
  # completely: :different
79
79
  # }
80
- class IndentFirstHashElement < Cop
80
+ class FirstHashElementIndentation < Cop
81
81
  include Alignment
82
82
  include ConfigurableEnforcedStyle
83
83
  include MultilineElementIndentation
@@ -113,7 +113,7 @@ module RuboCop
113
113
  first_pair = hash_node.pairs.first
114
114
 
115
115
  if first_pair
116
- return if first_pair.source_range.line == left_brace.line
116
+ return if first_pair.first_line == left_brace.line
117
117
 
118
118
  if separator_style?(first_pair)
119
119
  check_based_on_longest_key(hash_node, left_brace,
@@ -128,7 +128,7 @@ module RuboCop
128
128
 
129
129
  def check_right_brace(right_brace, left_brace, left_parenthesis)
130
130
  # if the right brace is on the same line as the last value, accept
131
- return if right_brace.source_line[0...right_brace.column] =~ /\S/
131
+ return if /\S/.match?(right_brace.source_line[0...right_brace.column])
132
132
 
133
133
  expected_column = base_column(left_brace, left_parenthesis)
134
134
  @column_delta = expected_column - right_brace.column
@@ -149,7 +149,7 @@ module RuboCop
149
149
  def separator_style?(first_pair)
150
150
  separator = first_pair.loc.operator
151
151
  key = "Enforced#{separator.is?(':') ? 'Colon' : 'HashRocket'}Style"
152
- config.for_cop('Layout/AlignHash')[key] == 'separator'
152
+ config.for_cop('Layout/HashAlignment')[key] == 'separator'
153
153
  end
154
154
 
155
155
  def check_based_on_longest_key(hash_node, left_brace, left_parenthesis)
@@ -16,8 +16,9 @@ module RuboCop
16
16
  # {
17
17
  # a: 1,
18
18
  # b: 2 }
19
- class FirstHashElementLineBreak < Cop
19
+ class FirstHashElementLineBreak < Base
20
20
  include FirstElementLineBreak
21
+ extend AutoCorrector
21
22
 
22
23
  MSG = 'Add a line break before the first element of a ' \
23
24
  'multi-line hash.'
@@ -27,10 +28,6 @@ module RuboCop
27
28
  # If it doesn't, Style/FirstMethodArgumentLineBreak will handle it
28
29
  check_children_line_break(node, node.children) if node.loc.begin
29
30
  end
30
-
31
- def autocorrect(node)
32
- EmptyLineCorrector.insert_before(node)
33
- end
34
31
  end
35
32
  end
36
33
  end
@@ -20,14 +20,15 @@ module RuboCop
20
20
  # # ignored
21
21
  # method foo, bar,
22
22
  # baz
23
- class FirstMethodArgumentLineBreak < Cop
23
+ class FirstMethodArgumentLineBreak < Base
24
24
  include FirstElementLineBreak
25
+ extend AutoCorrector
25
26
 
26
27
  MSG = 'Add a line break before the first argument of a ' \
27
28
  'multi-line method argument list.'
28
29
 
29
30
  def on_send(node)
30
- args = node.arguments
31
+ args = node.arguments.dup
31
32
 
32
33
  # If there is a trailing hash arg without explicit braces, like this:
33
34
  #
@@ -35,20 +36,13 @@ module RuboCop
35
36
  #
36
37
  # ...then each key/value pair is treated as a method 'argument'
37
38
  # when determining where line breaks should appear.
38
- if (last_arg = args.last)
39
- if last_arg.hash_type? && !last_arg.braces?
40
- args = args.concat(args.pop.children)
41
- end
42
- end
39
+ last_arg = args.last
40
+ args.concat(args.pop.children) if last_arg&.hash_type? && !last_arg&.braces?
43
41
 
44
42
  check_method_line_break(node, args)
45
43
  end
46
44
  alias on_csend on_send
47
45
  alias on_super on_send
48
-
49
- def autocorrect(node)
50
- EmptyLineCorrector.insert_before(node)
51
- end
52
46
  end
53
47
  end
54
48
  end
@@ -26,8 +26,9 @@ module RuboCop
26
26
  # bar
27
27
  # do_something
28
28
  # end
29
- class FirstMethodParameterLineBreak < Cop
29
+ class FirstMethodParameterLineBreak < Base
30
30
  include FirstElementLineBreak
31
+ extend AutoCorrector
31
32
 
32
33
  MSG = 'Add a line break before the first parameter of a ' \
33
34
  'multi-line method parameter list.'
@@ -36,10 +37,6 @@ module RuboCop
36
37
  check_method_line_break(node, node.arguments)
37
38
  end
38
39
  alias on_defs on_def
39
-
40
- def autocorrect(node)
41
- EmptyLineCorrector.insert_before(node)
42
- end
43
40
  end
44
41
  end
45
42
  end
@@ -3,9 +3,13 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Layout
6
- # This cop checks the indentation of the first parameter in a method call.
7
- # Parameters after the first one are checked by Layout/AlignParameters,
8
- # not by this cop.
6
+ # This cop checks the indentation of the first parameter in a method
7
+ # definition. Parameters after the first one are checked by
8
+ # Layout/ParameterAlignment, not by this cop.
9
+ #
10
+ # For indenting the first argument of method _calls_, check out
11
+ # Layout/FirstArgumentIndentation, which supports options related to
12
+ # nesting that are irrelevant for method _definitions_.
9
13
  #
10
14
  # @example
11
15
  #
@@ -37,7 +41,7 @@ module RuboCop
37
41
  # second_param)
38
42
  # 123
39
43
  # end
40
- class IndentFirstParameter < Cop
44
+ class FirstParameterIndentation < Cop
41
45
  include Alignment
42
46
  include ConfigurableEnforcedStyle
43
47
  include MultilineElementIndentation
@@ -7,16 +7,16 @@ module RuboCop
7
7
  # literal are aligned according to configuration. The configuration
8
8
  # options are:
9
9
  #
10
- # - key (left align keys, one space before hash rockets and values)
11
- # - separator (align hash rockets and colons, right align keys)
12
- # - table (left align keys, hash rockets, and values)
10
+ # * key (left align keys, one space before hash rockets and values)
11
+ # * separator (align hash rockets and colons, right align keys)
12
+ # * table (left align keys, hash rockets, and values)
13
13
  #
14
14
  # The treatment of hashes passed as the last argument to a method call
15
15
  # can also be configured. The options are:
16
16
  #
17
- # - always_inspect
18
- # - always_ignore
19
- # - ignore_implicit (without curly braces)
17
+ # * always_inspect
18
+ # * always_ignore
19
+ # * ignore_implicit (without curly braces)
20
20
  #
21
21
  # Alternatively you can specify multiple allowed styles. That's done by
22
22
  # passing a list of styles to EnforcedStyles.
@@ -175,12 +175,17 @@ module RuboCop
175
175
  # do_something({foo: 1,
176
176
  # bar: 2})
177
177
  #
178
- class AlignHash < Cop
179
- include HashAlignment
178
+ class HashAlignment < Base
179
+ include HashAlignmentStyles
180
180
  include RangeHelp
181
+ extend AutoCorrector
181
182
 
182
- MSG = 'Align the elements of a hash literal if they span more than ' \
183
- 'one line.'
183
+ MESSAGES = { KeyAlignment => 'Align the keys of a hash literal if ' \
184
+ 'they span more than one line.',
185
+ SeparatorAlignment => 'Align the separators of a hash ' \
186
+ 'literal if they span more than one line.',
187
+ TableAlignment => 'Align the keys and values of a hash ' \
188
+ 'literal if they span more than one line.' }.freeze
184
189
 
185
190
  def on_send(node)
186
191
  return if double_splat?(node)
@@ -196,7 +201,7 @@ module RuboCop
196
201
  alias on_super on_send
197
202
  alias on_yield on_send
198
203
 
199
- def on_hash(node)
204
+ def on_hash(node) # rubocop:todo Metrics/CyclomaticComplexity
200
205
  return if ignored_node?(node)
201
206
  return if node.pairs.empty? || node.single_line?
202
207
 
@@ -208,26 +213,22 @@ module RuboCop
208
213
  check_pairs(node)
209
214
  end
210
215
 
211
- def autocorrect(node)
212
- delta = column_deltas[alignment_for(node).first.class][node]
213
- return if delta.nil?
214
-
215
- correct_node(node, delta)
216
- end
217
-
218
- attr_accessor :offences_by
219
- attr_accessor :column_deltas
216
+ attr_accessor :offences_by, :column_deltas
220
217
 
221
218
  private
222
219
 
220
+ def reset!
221
+ self.offences_by = {}
222
+ self.column_deltas = Hash.new { |hash, key| hash[key] = {} }
223
+ end
224
+
223
225
  def double_splat?(node)
224
226
  node.children.last.is_a?(Symbol)
225
227
  end
226
228
 
227
229
  def check_pairs(node)
228
230
  first_pair = node.pairs.first
229
- self.offences_by = {}
230
- self.column_deltas = Hash.new { |hash, key| hash[key] = {} }
231
+ reset!
231
232
 
232
233
  alignment_for(first_pair).each do |alignment|
233
234
  delta = alignment.deltas_for_first_pair(first_pair, node)
@@ -245,9 +246,13 @@ module RuboCop
245
246
  end
246
247
 
247
248
  def add_offences
248
- _format, offences = offences_by.min_by { |_, v| v.length }
249
+ format, offences = offences_by.min_by { |_, v| v.length }
249
250
  (offences || []).each do |offence|
250
- add_offense offence
251
+ add_offense(offence, message: MESSAGES[format]) do |corrector|
252
+ delta = column_deltas[alignment_for(offence).first.class][offence]
253
+
254
+ correct_node(corrector, offence, delta) unless delta.nil?
255
+ end
251
256
  end
252
257
  end
253
258
 
@@ -286,25 +291,26 @@ module RuboCop
286
291
  new_alignment('EnforcedColonStyle')
287
292
  end
288
293
 
289
- def correct_node(node, delta)
294
+ def correct_node(corrector, node, delta)
290
295
  # We can't use the instance variable inside the lambda. That would
291
296
  # just give each lambda the same reference and they would all get the
292
297
  # last value of each. A local variable fixes the problem.
293
298
 
294
- if !node.value
295
- correct_no_value(delta[:key] || 0, node.source_range)
296
- else
297
- correct_key_value(delta, node.key.source_range,
299
+ if node.value
300
+ correct_key_value(corrector, delta, node.key.source_range,
298
301
  node.value.source_range,
299
302
  node.loc.operator)
303
+ else
304
+ delta_value = delta[:key] || 0
305
+ correct_no_value(corrector, delta_value, node.source_range)
300
306
  end
301
307
  end
302
308
 
303
- def correct_no_value(key_delta, key)
304
- ->(corrector) { adjust(corrector, key_delta, key) }
309
+ def correct_no_value(corrector, key_delta, key)
310
+ adjust(corrector, key_delta, key)
305
311
  end
306
312
 
307
- def correct_key_value(delta, key, value, separator)
313
+ def correct_key_value(corrector, delta, key, value, separator)
308
314
  # We can't use the instance variable inside the lambda. That would
309
315
  # just give each lambda the same reference and they would all get the
310
316
  # last value of each. Some local variables fix the problem.
@@ -315,11 +321,9 @@ module RuboCop
315
321
  key_column = key.column
316
322
  key_delta = -key_column if key_delta < -key_column
317
323
 
318
- lambda do |corrector|
319
- adjust(corrector, key_delta, key)
320
- adjust(corrector, separator_delta, separator)
321
- adjust(corrector, value_delta, value)
322
- end
324
+ adjust(corrector, key_delta, key)
325
+ adjust(corrector, separator_delta, separator)
326
+ adjust(corrector, value_delta, value)
323
327
  end
324
328
 
325
329
  def new_alignment(key)
@@ -50,12 +50,17 @@ module RuboCop
50
50
  # 123,
51
51
  # )
52
52
  #
53
- class HeredocArgumentClosingParenthesis < Cop
53
+ class HeredocArgumentClosingParenthesis < Base
54
54
  include RangeHelp
55
+ extend AutoCorrector
55
56
 
56
57
  MSG = 'Put the closing parenthesis for a method call with a ' \
57
58
  'HEREDOC parameter on the same line as the HEREDOC opening.'
58
59
 
60
+ def self.autocorrect_incompatible_with
61
+ [Style::TrailingCommaInArguments]
62
+ end
63
+
59
64
  def on_send(node)
60
65
  heredoc_arg = extract_heredoc_argument(node)
61
66
  return unless heredoc_arg
@@ -64,10 +69,15 @@ module RuboCop
64
69
  return unless outermost_send
65
70
  return unless outermost_send.loc.end
66
71
  return unless heredoc_arg.first_line != outermost_send.loc.end.line
72
+ return if subsequent_closing_parentheses_in_same_line?(outermost_send)
67
73
 
68
- add_offense(outermost_send, location: :end)
74
+ add_offense(outermost_send.loc.end) do |corrector|
75
+ autocorrect(corrector, outermost_send)
76
+ end
69
77
  end
70
78
 
79
+ private
80
+
71
81
  # Autocorrection note:
72
82
  #
73
83
  # Commas are a bit tricky to handle when the method call is
@@ -94,22 +104,14 @@ module RuboCop
94
104
  # SQL
95
105
  # third_array_value,
96
106
  # ]
97
- def autocorrect(node)
98
- lambda do |corrector|
99
- fix_closing_parenthesis(node, corrector)
107
+ def autocorrect(corrector, node)
108
+ fix_closing_parenthesis(node, corrector)
100
109
 
101
- if internal_trailing_comma?(node)
102
- remove_internal_trailing_comma(node, corrector)
103
- end
110
+ remove_internal_trailing_comma(node, corrector) if internal_trailing_comma?(node)
104
111
 
105
- if external_trailing_comma?(node)
106
- fix_external_trailing_comma(node, corrector)
107
- end
108
- end
112
+ fix_external_trailing_comma(node, corrector) if external_trailing_comma?(node)
109
113
  end
110
114
 
111
- private
112
-
113
115
  def outermost_send_on_same_line(heredoc)
114
116
  previous = heredoc
115
117
  current = previous.parent
@@ -159,13 +161,24 @@ module RuboCop
159
161
 
160
162
  # Closing parenthesis helpers.
161
163
 
164
+ def subsequent_closing_parentheses_in_same_line?(outermost_send)
165
+ last_arg_of_outer_send = outermost_send.last_argument
166
+ return false unless last_arg_of_outer_send&.loc.respond_to?(:end) &&
167
+ (end_of_last_arg_of_outer_send = last_arg_of_outer_send.loc.end)
168
+
169
+ end_of_outer_send = outermost_send.loc.end
170
+
171
+ end_of_outer_send.line == end_of_last_arg_of_outer_send.line &&
172
+ end_of_outer_send.column == end_of_last_arg_of_outer_send.column + 1
173
+ end
174
+
162
175
  def fix_closing_parenthesis(node, corrector)
163
176
  remove_incorrect_closing_paren(node, corrector)
164
177
  add_correct_closing_paren(node, corrector)
165
178
  end
166
179
 
167
180
  def add_correct_closing_paren(node, corrector)
168
- corrector.insert_after(node.arguments.last.source_range, ')')
181
+ corrector.insert_after(node.arguments.last, ')')
169
182
  end
170
183
 
171
184
  def remove_incorrect_closing_paren(node, corrector)
@@ -190,7 +203,7 @@ module RuboCop
190
203
  def safe_to_remove_line_containing_closing_paren?(node)
191
204
  last_line = processed_source[node.loc.end.line - 1]
192
205
  # Safe to remove if last line only contains `)`, `,`, and whitespace.
193
- last_line.match(/^[ ]*\)[ ]{0,20},{0,1}[ ]*$/)
206
+ last_line.match?(/^ *\) {0,20},{0,1} *$/)
194
207
  end
195
208
 
196
209
  def incorrect_parenthesis_removal_end(node)
@@ -245,7 +258,7 @@ module RuboCop
245
258
  def add_correct_external_trailing_comma(node, corrector)
246
259
  return unless external_trailing_comma?(node)
247
260
 
248
- corrector.insert_after(node.arguments.last.source_range, ',')
261
+ corrector.insert_after(node.arguments.last, ',')
249
262
  end
250
263
 
251
264
  def remove_incorrect_external_trailing_comma(node, corrector)
@@ -0,0 +1,176 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Layout
6
+ # This cop checks the indentation of the here document bodies. The bodies
7
+ # are indented one step.
8
+ #
9
+ # Note: When ``Layout/LineLength``'s `AllowHeredoc` is false (not default),
10
+ # this cop does not add any offenses for long here documents to
11
+ # avoid `Layout/LineLength`'s offenses.
12
+ #
13
+ # @example
14
+ # # bad
15
+ # <<-RUBY
16
+ # something
17
+ # RUBY
18
+ #
19
+ # # good
20
+ # <<~RUBY
21
+ # something
22
+ # RUBY
23
+ #
24
+ class HeredocIndentation < Base
25
+ include Heredoc
26
+ extend AutoCorrector
27
+
28
+ TYPE_MSG = 'Use %<indentation_width>d spaces for indentation in a ' \
29
+ 'heredoc by using `<<~` instead of `%<current_indent_type>s`.'
30
+ WIDTH_MSG = 'Use %<indentation_width>d spaces for indentation in a heredoc.'
31
+
32
+ def on_heredoc(node)
33
+ body = heredoc_body(node)
34
+ return if body.strip.empty?
35
+
36
+ body_indent_level = indent_level(body)
37
+ heredoc_indent_type = heredoc_indent_type(node)
38
+
39
+ if heredoc_indent_type == '~'
40
+ expected_indent_level = base_indent_level(node) + indentation_width
41
+ return if expected_indent_level == body_indent_level
42
+ else
43
+ return unless body_indent_level.zero?
44
+ end
45
+
46
+ return if line_too_long?(node)
47
+
48
+ register_offense(node, heredoc_indent_type)
49
+ end
50
+
51
+ private
52
+
53
+ def register_offense(node, heredoc_indent_type)
54
+ message = message(heredoc_indent_type)
55
+
56
+ add_offense(node.loc.heredoc_body, message: message) do |corrector|
57
+ if heredoc_indent_type == '~'
58
+ adjust_squiggly(corrector, node)
59
+ else
60
+ adjust_minus(corrector, node)
61
+ end
62
+ end
63
+ end
64
+
65
+ def message(heredoc_indent_type)
66
+ current_indent_type = "<<#{heredoc_indent_type}"
67
+
68
+ if current_indent_type == '<<~'
69
+ width_message(indentation_width)
70
+ else
71
+ type_message(indentation_width, current_indent_type)
72
+ end
73
+ end
74
+
75
+ def type_message(indentation_width, current_indent_type)
76
+ format(
77
+ TYPE_MSG,
78
+ indentation_width: indentation_width,
79
+ current_indent_type: current_indent_type
80
+ )
81
+ end
82
+
83
+ def width_message(indentation_width)
84
+ format(
85
+ WIDTH_MSG,
86
+ indentation_width: indentation_width
87
+ )
88
+ end
89
+
90
+ def line_too_long?(node)
91
+ return false if unlimited_heredoc_length?
92
+
93
+ body = heredoc_body(node)
94
+
95
+ expected_indent = base_indent_level(node) + indentation_width
96
+ actual_indent = indent_level(body)
97
+ increase_indent_level = expected_indent - actual_indent
98
+
99
+ longest_line(body).size + increase_indent_level >= max_line_length
100
+ end
101
+
102
+ def longest_line(lines)
103
+ lines.each_line.max_by { |line| line.chomp.size }.chomp
104
+ end
105
+
106
+ def unlimited_heredoc_length?
107
+ config.for_cop('Layout/LineLength')['AllowHeredoc']
108
+ end
109
+
110
+ def max_line_length
111
+ config.for_cop('Layout/LineLength')['Max']
112
+ end
113
+
114
+ def adjust_squiggly(corrector, node)
115
+ corrector.replace(node.loc.heredoc_body, indented_body(node))
116
+ corrector.replace(node.loc.heredoc_end, indented_end(node))
117
+ end
118
+
119
+ def adjust_minus(corrector, node)
120
+ heredoc_beginning = node.loc.expression.source
121
+ corrected = heredoc_beginning.sub(/<<-?/, '<<~')
122
+ corrector.replace(node, corrected)
123
+ end
124
+
125
+ def indented_body(node)
126
+ body = heredoc_body(node)
127
+ body_indent_level = indent_level(body)
128
+ correct_indent_level = base_indent_level(node) + indentation_width
129
+ body.gsub(/^[^\S\r\n]{#{body_indent_level}}/,
130
+ ' ' * correct_indent_level)
131
+ end
132
+
133
+ def indented_end(node)
134
+ end_ = heredoc_end(node)
135
+ end_indent_level = indent_level(end_)
136
+ correct_indent_level = base_indent_level(node)
137
+ if end_indent_level < correct_indent_level
138
+ end_.gsub(/^\s{#{end_indent_level}}/, ' ' * correct_indent_level)
139
+ else
140
+ end_
141
+ end
142
+ end
143
+
144
+ def base_indent_level(node)
145
+ base_line_num = node.loc.expression.line
146
+ base_line = processed_source.lines[base_line_num - 1]
147
+ indent_level(base_line)
148
+ end
149
+
150
+ def indent_level(str)
151
+ indentations = str.lines
152
+ .map { |line| line[/^\s*/] }
153
+ .reject { |line| line.end_with?("\n") }
154
+ indentations.empty? ? 0 : indentations.min_by(&:size).size
155
+ end
156
+
157
+ # Returns '~', '-' or nil
158
+ def heredoc_indent_type(node)
159
+ node.source[/^<<([~-])/, 1]
160
+ end
161
+
162
+ def indentation_width
163
+ @config.for_cop('Layout/IndentationWidth')['Width'] || 2
164
+ end
165
+
166
+ def heredoc_body(node)
167
+ node.loc.heredoc_body.source
168
+ end
169
+
170
+ def heredoc_end(node)
171
+ node.loc.heredoc_end.source
172
+ end
173
+ end
174
+ end
175
+ end
176
+ end
@@ -5,12 +5,13 @@ module RuboCop
5
5
  module Layout
6
6
  # This cop checks for inconsistent indentation.
7
7
  #
8
- # The difference between `rails` and `normal` is that the `rails` style
9
- # prescribes that in classes and modules the `protected` and `private`
10
- # modifier keywords shall be indented the same as public methods and that
11
- # protected and private members shall be indented one step more than the
12
- # modifiers. Other than that, both styles mean that entities on the same
13
- # logical depth shall have the same indentation.
8
+ # The difference between `indented_internal_methods` and `normal` is
9
+ # that the `indented_internal_methods` style prescribes that in
10
+ # classes and modules the `protected` and `private` modifier keywords
11
+ # shall be indented the same as public methods and that protected and
12
+ # private members shall be indented one step more than the modifiers.
13
+ # Other than that, both styles mean that entities on the same logical
14
+ # depth shall have the same indentation.
14
15
  #
15
16
  # @example EnforcedStyle: normal (default)
16
17
  # # bad
@@ -65,7 +66,7 @@ module RuboCop
65
66
  # end
66
67
  # end
67
68
  #
68
- # @example EnforcedStyle: rails
69
+ # @example EnforcedStyle: indented_internal_methods
69
70
  # # bad
70
71
  # class A
71
72
  # def test
@@ -166,8 +167,8 @@ module RuboCop
166
167
  end
167
168
 
168
169
  def check(node)
169
- if style == :rails
170
- check_rails_style(node)
170
+ if style == :indented_internal_methods
171
+ check_indented_internal_methods_style(node)
171
172
  else
172
173
  check_normal_style(node)
173
174
  end
@@ -180,13 +181,13 @@ module RuboCop
180
181
  )
181
182
  end
182
183
 
183
- def check_rails_style(node)
184
+ def check_indented_internal_methods_style(node)
184
185
  children_to_check = [[]]
185
186
  node.children.each do |child|
186
187
  # Modifier nodes have special indentation and will be checked by
187
188
  # the AccessModifierIndentation cop. This cop uses them as dividers
188
- # in rails mode. Then consistency is checked only within each
189
- # section delimited by a modifier node.
189
+ # in indented_internal_methods mode. Then consistency is checked
190
+ # only within each section delimited by a modifier node.
190
191
  if bare_access_modifier?(child)
191
192
  children_to_check << []
192
193
  else