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
@@ -3,40 +3,49 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # TODO: Make configurable.
7
- # Checks for uses of if/then/else/end on a single line.
6
+ # Checks for uses of if/then/else/end constructs on a single line.
7
+ # AlwaysCorrectToMultiline config option can be set to true to auto-convert all offenses to
8
+ # multi-line constructs. When AlwaysCorrectToMultiline is false (default case) the
9
+ # auto-correct will first try converting them to ternary operators.
8
10
  #
9
11
  # @example
10
12
  # # bad
11
- # if foo then boo else doo end
12
- # unless foo then boo else goo end
13
+ # if foo then bar else baz end
14
+ #
15
+ # # bad
16
+ # unless foo then baz else bar end
13
17
  #
14
18
  # # good
15
- # foo ? boo : doo
16
- # boo if foo
17
- # if foo then boo end
19
+ # foo ? bar : baz
20
+ #
21
+ # # good
22
+ # bar if foo
23
+ #
24
+ # # good
25
+ # if foo then bar end
18
26
  #
19
27
  # # good
20
28
  # if foo
21
- # boo
29
+ # bar
22
30
  # else
23
- # doo
31
+ # baz
24
32
  # end
25
- class OneLineConditional < Cop
33
+ class OneLineConditional < Base
34
+ include ConfigurableEnforcedStyle
26
35
  include OnNormalIfUnless
36
+ extend AutoCorrector
27
37
 
28
- MSG = 'Favor the ternary operator (`?:`) ' \
29
- 'over `%<keyword>s/then/else/end` constructs.'
38
+ MSG = 'Favor the ternary operator (`?:`) or multi-line constructs ' \
39
+ 'over single-line `%<keyword>s/then/else/end` constructs.'
30
40
 
31
41
  def on_normal_if_unless(node)
32
- return unless node.single_line? && node.else_branch
33
-
34
- add_offense(node)
35
- end
42
+ return unless node.single_line?
43
+ return unless node.else_branch
44
+ return if node.elsif?
36
45
 
37
- def autocorrect(node)
38
- lambda do |corrector|
39
- corrector.replace(node.source_range, replacement(node))
46
+ message = message(node)
47
+ add_offense(node, message: message) do |corrector|
48
+ corrector.replace(node, replacement(node))
40
49
  end
41
50
  end
42
51
 
@@ -47,20 +56,57 @@ module RuboCop
47
56
  end
48
57
 
49
58
  def replacement(node)
50
- return to_ternary(node) unless node.parent
51
-
52
- if %i[and or].include?(node.parent.type)
53
- return "(#{to_ternary(node)})"
59
+ if always_multiline? || cannot_replace_to_ternary?(node)
60
+ multiline_replacement(node)
61
+ else
62
+ replaced_node = ternary_replacement(node)
63
+ return replaced_node unless node.parent
64
+ return "(#{replaced_node})" if %i[and or].include?(node.parent.type)
65
+ return "(#{replaced_node})" if node.parent.send_type? && node.parent.operator_method?
66
+
67
+ replaced_node
54
68
  end
69
+ end
70
+
71
+ def always_multiline?
72
+ @config.for_cop('Style/OneLineConditional')['AlwaysCorrectToMultiline']
73
+ end
74
+
75
+ def cannot_replace_to_ternary?(node)
76
+ node.elsif_conditional?
77
+ end
78
+
79
+ def multiline_replacement(node, indentation = nil)
80
+ indentation = ' ' * node.source_range.column if indentation.nil?
81
+ if_branch_source = node.if_branch&.source || 'nil'
82
+ elsif_indentation = indentation if node.respond_to?(:elsif?) && node.elsif?
83
+ if_branch = <<~RUBY
84
+ #{elsif_indentation}#{node.keyword} #{node.condition.source}
85
+ #{indentation}#{branch_body_indentation}#{if_branch_source}
86
+ RUBY
87
+ else_branch = else_branch_to_multiline(node.else_branch, indentation)
88
+ if_branch + else_branch
89
+ end
55
90
 
56
- if node.parent.send_type? && node.parent.operator_method?
57
- return "(#{to_ternary(node)})"
91
+ def else_branch_to_multiline(else_branch, indentation)
92
+ if else_branch.nil?
93
+ 'end'
94
+ elsif else_branch.if_type? && else_branch.elsif?
95
+ multiline_replacement(else_branch, indentation)
96
+ else
97
+ <<~RUBY.chomp
98
+ #{indentation}else
99
+ #{indentation}#{branch_body_indentation}#{else_branch.source}
100
+ #{indentation}end
101
+ RUBY
58
102
  end
103
+ end
59
104
 
60
- to_ternary(node)
105
+ def branch_body_indentation
106
+ ' ' * (@config.for_cop('Layout/IndentationWidth')['Width'] || 2)
61
107
  end
62
108
 
63
- def to_ternary(node)
109
+ def ternary_replacement(node)
64
110
  condition, if_branch, else_branch = *node
65
111
 
66
112
  "#{expr_replacement(condition)} ? " \
@@ -91,9 +137,10 @@ module RuboCop
91
137
 
92
138
  def keyword_with_changed_precedence?(node)
93
139
  return false unless node.keyword?
94
- return true if node.prefix_not?
140
+ return true if node.respond_to?(:prefix_not?) && node.prefix_not?
95
141
 
96
- node.arguments? && !node.parenthesized_call?
142
+ node.respond_to?(:arguments?) && node.arguments? &&
143
+ !node.parenthesized_call?
97
144
  end
98
145
  end
99
146
  end
@@ -19,16 +19,16 @@ module RuboCop
19
19
  # def fry(temperature: 300)
20
20
  # # ...
21
21
  # end
22
- class OptionHash < Cop
22
+ class OptionHash < Base
23
23
  MSG = 'Prefer keyword arguments to options hashes.'
24
24
 
25
- def_node_matcher :option_hash, <<-PATTERN
25
+ def_node_matcher :option_hash, <<~PATTERN
26
26
  (args ... $(optarg [#suspicious_name? _] (hash)))
27
27
  PATTERN
28
28
 
29
29
  def on_args(node)
30
30
  return if super_used?(node)
31
- return if whitelist.include?(node.parent.method_name.to_s)
31
+ return if allowlist.include?(node.parent.method_name.to_s)
32
32
 
33
33
  option_hash(node) do |options|
34
34
  add_offense(options)
@@ -37,8 +37,8 @@ module RuboCop
37
37
 
38
38
  private
39
39
 
40
- def whitelist
41
- cop_config['Whitelist'] || []
40
+ def allowlist
41
+ cop_config['Allowlist'] || []
42
42
  end
43
43
 
44
44
  def suspicious_name?(arg_name)
@@ -4,7 +4,7 @@ module RuboCop
4
4
  module Cop
5
5
  module Style
6
6
  # This cop checks for optional arguments to methods
7
- # that do not come at the end of the argument list
7
+ # that do not come at the end of the argument list.
8
8
  #
9
9
  # @example
10
10
  # # bad
@@ -17,7 +17,7 @@ module RuboCop
17
17
  #
18
18
  # def foobar(a = 1, b = 2, c = 3)
19
19
  # end
20
- class OptionalArguments < Cop
20
+ class OptionalArguments < Base
21
21
  MSG = 'Optional arguments should appear at the end ' \
22
22
  'of the argument list.'
23
23
 
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # This cop checks for places where keyword arguments can be used instead of
7
+ # boolean arguments when defining methods. `respond_to_missing?` method is allowed by default.
8
+ # These are customizable with `AllowedMethods` option.
9
+ #
10
+ # @example
11
+ # # bad
12
+ # def some_method(bar = false)
13
+ # puts bar
14
+ # end
15
+ #
16
+ # # bad - common hack before keyword args were introduced
17
+ # def some_method(options = {})
18
+ # bar = options.fetch(:bar, false)
19
+ # puts bar
20
+ # end
21
+ #
22
+ # # good
23
+ # def some_method(bar: false)
24
+ # puts bar
25
+ # end
26
+ #
27
+ # @example AllowedMethods: ['some_method']
28
+ # # good
29
+ # def some_method(bar = false)
30
+ # puts bar
31
+ # end
32
+ #
33
+ class OptionalBooleanParameter < Base
34
+ include AllowedMethods
35
+
36
+ MSG = 'Use keyword arguments when defining method with boolean argument.'
37
+ BOOLEAN_TYPES = %i[true false].freeze
38
+
39
+ def on_def(node)
40
+ return if allowed_method?(node.method_name)
41
+
42
+ node.arguments.each do |arg|
43
+ next unless arg.optarg_type?
44
+
45
+ _name, value = *arg
46
+ add_offense(arg) if BOOLEAN_TYPES.include?(value.type)
47
+ end
48
+ end
49
+ alias on_defs on_def
50
+ end
51
+ end
52
+ end
53
+ end
@@ -26,18 +26,20 @@ module RuboCop
26
26
  #
27
27
  # # good - set name to 'Bozhidar', only if it's nil or false
28
28
  # name ||= 'Bozhidar'
29
- class OrAssignment < Cop
29
+ class OrAssignment < Base
30
+ extend AutoCorrector
31
+
30
32
  MSG = 'Use the double pipe equals operator `||=` instead.'
31
33
 
32
- def_node_matcher :ternary_assignment?, <<-PATTERN
34
+ def_node_matcher :ternary_assignment?, <<~PATTERN
33
35
  ({lvasgn ivasgn cvasgn gvasgn} _var
34
36
  (if
35
37
  ({lvar ivar cvar gvar} _var)
36
38
  ({lvar ivar cvar gvar} _var)
37
- _))
39
+ $_))
38
40
  PATTERN
39
41
 
40
- def_node_matcher :unless_assignment?, <<-PATTERN
42
+ def_node_matcher :unless_assignment?, <<~PATTERN
41
43
  (if
42
44
  ({lvar ivar cvar gvar} _var) nil?
43
45
  ({lvasgn ivasgn cvasgn gvasgn} _var
@@ -47,41 +49,48 @@ module RuboCop
47
49
  def on_if(node)
48
50
  return unless unless_assignment?(node)
49
51
 
50
- add_offense(node)
52
+ add_offense(node) do |corrector|
53
+ autocorrect(corrector, node)
54
+ end
51
55
  end
52
56
 
53
57
  def on_lvasgn(node)
54
- return unless ternary_assignment?(node)
58
+ return unless (else_branch = ternary_assignment?(node))
59
+ return if else_branch.if_type?
55
60
 
56
- add_offense(node)
61
+ add_offense(node) do |corrector|
62
+ autocorrect(corrector, node)
63
+ end
57
64
  end
58
65
 
59
66
  alias on_ivasgn on_lvasgn
60
67
  alias on_cvasgn on_lvasgn
61
68
  alias on_gvasgn on_lvasgn
62
69
 
63
- def autocorrect(node)
70
+ private
71
+
72
+ def autocorrect(corrector, node)
64
73
  if ternary_assignment?(node)
65
74
  variable, default = take_variable_and_default_from_ternary(node)
66
75
  else
67
76
  variable, default = take_variable_and_default_from_unless(node)
68
77
  end
69
78
 
70
- lambda do |corrector|
71
- corrector.replace(node.source_range,
72
- "#{variable} ||= #{default.source}")
73
- end
79
+ corrector.replace(node, "#{variable} ||= #{default.source}")
74
80
  end
75
81
 
76
- private
77
-
78
82
  def take_variable_and_default_from_ternary(node)
79
83
  variable, if_statement = *node
80
84
  [variable, if_statement.else_branch]
81
85
  end
82
86
 
83
87
  def take_variable_and_default_from_unless(node)
84
- variable, default = *node.if_branch
88
+ if node.if_branch
89
+ variable, default = *node.if_branch
90
+ else
91
+ variable, default = *node.else_branch
92
+ end
93
+
85
94
  [variable, default]
86
95
  end
87
96
  end
@@ -22,37 +22,37 @@ module RuboCop
22
22
  # a = 1
23
23
  # b = 2
24
24
  # c = 3
25
- class ParallelAssignment < Cop
25
+ class ParallelAssignment < Base
26
26
  include RescueNode
27
+ extend AutoCorrector
27
28
 
28
29
  MSG = 'Do not use parallel assignment.'
29
30
 
30
31
  def on_masgn(node)
31
32
  lhs, rhs = *node
32
33
  lhs_elements = *lhs
33
- rhs_elements = [*rhs].compact # edge case for one constant
34
+ rhs_elements = Array(rhs).compact # edge case for one constant
34
35
 
35
36
  return if allowed_lhs?(lhs) || allowed_rhs?(rhs) ||
36
37
  allowed_masign?(lhs_elements, rhs_elements)
37
38
 
38
- add_offense(node)
39
- end
40
-
41
- def autocorrect(node)
42
- lambda do |corrector|
43
- left, right = *node
44
- left_elements = *left
45
- right_elements = [*right].compact
46
- order = find_valid_order(left_elements, right_elements)
47
- correction = assignment_corrector(node, order)
48
-
49
- corrector.replace(correction.correction_range,
50
- correction.correction)
39
+ add_offense(node) do |corrector|
40
+ autocorrect(corrector, node)
51
41
  end
52
42
  end
53
43
 
54
44
  private
55
45
 
46
+ def autocorrect(corrector, node)
47
+ left, right = *node
48
+ left_elements = *left
49
+ right_elements = Array(right).compact
50
+ order = find_valid_order(left_elements, right_elements)
51
+ correction = assignment_corrector(node, order)
52
+
53
+ corrector.replace(correction.correction_range, correction.correction)
54
+ end
55
+
56
56
  def allowed_masign?(lhs_elements, rhs_elements)
57
57
  lhs_elements.size != rhs_elements.size ||
58
58
  !find_valid_order(lhs_elements,
@@ -69,7 +69,7 @@ module RuboCop
69
69
 
70
70
  def allowed_rhs?(node)
71
71
  # Edge case for one constant
72
- elements = [*node].compact
72
+ elements = Array(node).compact
73
73
 
74
74
  # Account for edge case of `Constant::CONSTANT`
75
75
  !node.array_type? ||
@@ -131,8 +131,8 @@ module RuboCop
131
131
  @assignments = assignments
132
132
  end
133
133
 
134
- def tsort_each_node
135
- @assignments.each { |a| yield a }
134
+ def tsort_each_node(&block)
135
+ @assignments.each(&block)
136
136
  end
137
137
 
138
138
  def tsort_each_child(assignment)
@@ -6,6 +6,11 @@ module RuboCop
6
6
  # This cop checks for the presence of superfluous parentheses around the
7
7
  # condition of if/unless/while/until.
8
8
  #
9
+ # `AllowSafeAssignment` option for safe assignment.
10
+ # By safe assignment we mean putting parentheses around
11
+ # an assignment to indicate "I know I'm using an assignment
12
+ # as a condition. It's not a mistake."
13
+ #
9
14
  # @example
10
15
  # # bad
11
16
  # x += 1 while (x < 10)
@@ -23,6 +28,14 @@ module RuboCop
23
28
  # elsif x < 3
24
29
  # end
25
30
  #
31
+ # @example AllowSafeAssignment: true (default)
32
+ # # good
33
+ # foo unless (bar = baz)
34
+ #
35
+ # @example AllowSafeAssignment: false
36
+ # # bad
37
+ # foo unless (bar = baz)
38
+ #
26
39
  # @example AllowInMultilineConditions: false (default)
27
40
  # # bad
28
41
  # if (x > 10 &&
@@ -39,9 +52,11 @@ module RuboCop
39
52
  # if (x > 10 &&
40
53
  # y > 10)
41
54
  # end
42
- class ParenthesesAroundCondition < Cop
55
+ #
56
+ class ParenthesesAroundCondition < Base
43
57
  include SafeAssignment
44
58
  include Parentheses
59
+ extend AutoCorrector
45
60
 
46
61
  def on_if(node)
47
62
  return if node.ternary?
@@ -54,13 +69,9 @@ module RuboCop
54
69
  end
55
70
  alias on_until on_while
56
71
 
57
- def autocorrect(node)
58
- ParenthesesCorrector.correct(node)
59
- end
60
-
61
72
  private
62
73
 
63
- def_node_matcher :control_op_condition, <<-PATTERN
74
+ def_node_matcher :control_op_condition, <<~PATTERN
64
75
  (begin $_ ...)
65
76
  PATTERN
66
77
 
@@ -71,7 +82,10 @@ module RuboCop
71
82
  return if modifier_op?(first_child)
72
83
  return if parens_allowed?(cond)
73
84
 
74
- add_offense(cond)
85
+ message = message(cond)
86
+ add_offense(cond, message: message) do |corrector|
87
+ ParenthesesCorrector.correct(corrector, cond)
88
+ end
75
89
  end
76
90
  end
77
91
 
@@ -23,8 +23,9 @@ module RuboCop
23
23
  #
24
24
  # # bad
25
25
  # %I(alpha beta)
26
- class PercentLiteralDelimiters < Cop
26
+ class PercentLiteralDelimiters < Base
27
27
  include PercentLiteral
28
+ extend AutoCorrector
28
29
 
29
30
  def on_array(node)
30
31
  process(node, '%w', '%W', '%i', '%I')
@@ -47,34 +48,27 @@ module RuboCop
47
48
  process(node, '%x')
48
49
  end
49
50
 
50
- def message(node)
51
- type = type(node)
52
- delimiters = preferred_delimiters_for(type)
53
-
54
- "`#{type}`-literals should be delimited by " \
55
- "`#{delimiters[0]}` and `#{delimiters[1]}`."
56
- end
51
+ private
57
52
 
58
- def autocorrect(node)
53
+ def on_percent_literal(node)
59
54
  type = type(node)
55
+ return if uses_preferred_delimiter?(node, type) ||
56
+ contains_preferred_delimiter?(node, type) ||
57
+ include_same_character_as_used_for_delimiter?(node, type)
60
58
 
61
- opening_delimiter, closing_delimiter = preferred_delimiters_for(type)
59
+ add_offense(node, message: message(type)) do |corrector|
60
+ opening_delimiter, closing_delimiter = preferred_delimiters_for(type)
62
61
 
63
- lambda do |corrector|
64
62
  corrector.replace(node.loc.begin, "#{type}#{opening_delimiter}")
65
63
  corrector.replace(node.loc.end, closing_delimiter)
66
64
  end
67
65
  end
68
66
 
69
- private
70
-
71
- def on_percent_literal(node)
72
- type = type(node)
73
- return if uses_preferred_delimiter?(node, type) ||
74
- contains_preferred_delimiter?(node, type) ||
75
- include_same_character_as_used_for_delimiter?(node, type)
67
+ def message(type)
68
+ delimiters = preferred_delimiters_for(type)
76
69
 
77
- add_offense(node)
70
+ "`#{type}`-literals should be delimited by " \
71
+ "`#{delimiters[0]}` and `#{delimiters[1]}`."
78
72
  end
79
73
 
80
74
  def preferred_delimiters_for(type)
@@ -88,27 +82,27 @@ module RuboCop
88
82
  end
89
83
 
90
84
  def contains_preferred_delimiter?(node, type)
91
- preferred_delimiters = preferred_delimiters_for(type)
92
- node
93
- .children.map { |n| string_source(n) }.compact
94
- .any? { |s| preferred_delimiters.any? { |d| s.include?(d) } }
85
+ contains_delimiter?(node, preferred_delimiters_for(type))
95
86
  end
96
87
 
97
88
  def include_same_character_as_used_for_delimiter?(node, type)
98
89
  return false unless %w[%w %i].include?(type)
99
90
 
100
91
  used_delimiters = matchpairs(begin_source(node)[-1])
101
- escaped_delimiters = used_delimiters.map { |d| "\\#{d}" }.join('|')
92
+ contains_delimiter?(node, used_delimiters)
93
+ end
102
94
 
95
+ def contains_delimiter?(node, delimiters)
96
+ delimiters_regexp = Regexp.union(delimiters)
103
97
  node
104
98
  .children.map { |n| string_source(n) }.compact
105
- .any? { |s| Regexp.new(escaped_delimiters) =~ s }
99
+ .any? { |s| delimiters_regexp.match?(s) }
106
100
  end
107
101
 
108
102
  def string_source(node)
109
103
  if node.is_a?(String)
110
- node
111
- elsif node.respond_to?(:type) && node.str_type?
104
+ node.scrub
105
+ elsif node.respond_to?(:type) && (node.str_type? || node.sym_type?)
112
106
  node.source
113
107
  end
114
108
  end
@@ -25,9 +25,10 @@ module RuboCop
25
25
  # # good
26
26
  # %Q/Mix the foo into the baz./
27
27
  # %Q{They all said: 'Hooray!'}
28
- class PercentQLiterals < Cop
28
+ class PercentQLiterals < Base
29
29
  include PercentLiteral
30
30
  include ConfigurableEnforcedStyle
31
+ extend AutoCorrector
31
32
 
32
33
  LOWER_CASE_Q_MSG = 'Do not use `%Q` unless interpolation is ' \
33
34
  'needed. Use `%q`.'
@@ -37,12 +38,6 @@ module RuboCop
37
38
  process(node, '%Q', '%q')
38
39
  end
39
40
 
40
- def autocorrect(node)
41
- lambda do |corrector|
42
- corrector.replace(node.source_range, corrected(node.source))
43
- end
44
- end
45
-
46
41
  private
47
42
 
48
43
  def on_percent_literal(node)
@@ -50,9 +45,12 @@ module RuboCop
50
45
 
51
46
  # Report offense only if changing case doesn't change semantics,
52
47
  # i.e., if the string would become dynamic or has special characters.
53
- return if node.children != parse(corrected(node.source)).ast.children
48
+ ast = ProcessedSource.new(corrected(node.source), target_ruby_version).ast
49
+ return if node.children != ast.children
54
50
 
55
- add_offense(node, location: :begin)
51
+ add_offense(node.loc.begin) do |corrector|
52
+ corrector.replace(node, corrected(node.source))
53
+ end
56
54
  end
57
55
 
58
56
  def correct_literal_style?(node)
@@ -60,7 +58,7 @@ module RuboCop
60
58
  style == :upper_case_q && type(node) == '%Q'
61
59
  end
62
60
 
63
- def message(_node)
61
+ def message(_range)
64
62
  style == :lower_case_q ? LOWER_CASE_Q_MSG : UPPER_CASE_Q_MSG
65
63
  end
66
64