rubocop 0.48.1 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (851) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE.txt +1 -1
  3. data/README.md +84 -50
  4. data/assets/output.html.erb +1 -1
  5. data/config/default.yml +4311 -902
  6. data/config/obsoletion.yml +200 -0
  7. data/exe/rubocop +15 -0
  8. data/lib/rubocop.rb +679 -481
  9. data/lib/rubocop/ast_aliases.rb +8 -0
  10. data/lib/rubocop/cached_data.rb +5 -10
  11. data/lib/rubocop/cli.rb +73 -129
  12. data/lib/rubocop/cli/command.rb +22 -0
  13. data/lib/rubocop/cli/command/auto_genenerate_config.rb +132 -0
  14. data/lib/rubocop/cli/command/base.rb +35 -0
  15. data/lib/rubocop/cli/command/execute_runner.rb +100 -0
  16. data/lib/rubocop/cli/command/init_dotfile.rb +44 -0
  17. data/lib/rubocop/cli/command/show_cops.rb +74 -0
  18. data/lib/rubocop/cli/command/suggest_extensions.rb +81 -0
  19. data/lib/rubocop/cli/command/version.rb +18 -0
  20. data/lib/rubocop/cli/environment.rb +22 -0
  21. data/lib/rubocop/comment_config.rb +80 -78
  22. data/lib/rubocop/config.rb +124 -259
  23. data/lib/rubocop/config_loader.rb +182 -133
  24. data/lib/rubocop/config_loader_resolver.rb +237 -14
  25. data/lib/rubocop/config_obsoletion.rb +103 -0
  26. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  27. data/lib/rubocop/config_obsoletion/changed_parameter.rb +21 -0
  28. data/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
  29. data/lib/rubocop/config_obsoletion/extracted_cop.rb +44 -0
  30. data/lib/rubocop/config_obsoletion/parameter_rule.rb +44 -0
  31. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  32. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  33. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  34. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  35. data/lib/rubocop/config_regeneration.rb +33 -0
  36. data/lib/rubocop/config_store.rb +31 -7
  37. data/lib/rubocop/config_validator.rb +234 -0
  38. data/lib/rubocop/cop/autocorrect_logic.rb +83 -4
  39. data/lib/rubocop/cop/badge.rb +16 -32
  40. data/lib/rubocop/cop/base.rb +450 -0
  41. data/lib/rubocop/cop/bundler/duplicated_gem.rb +44 -16
  42. data/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  43. data/lib/rubocop/cop/bundler/gem_version.rb +99 -0
  44. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +62 -0
  45. data/lib/rubocop/cop/bundler/ordered_gems.rb +18 -60
  46. data/lib/rubocop/cop/commissioner.rb +119 -68
  47. data/lib/rubocop/cop/cop.rb +93 -169
  48. data/lib/rubocop/cop/corrector.rb +81 -98
  49. data/lib/rubocop/cop/correctors/alignment_corrector.rb +136 -0
  50. data/lib/rubocop/cop/correctors/condition_corrector.rb +25 -0
  51. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +51 -0
  52. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +25 -0
  53. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +72 -0
  54. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  55. data/lib/rubocop/cop/correctors/line_break_corrector.rb +58 -0
  56. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +97 -0
  57. data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +42 -0
  58. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +28 -0
  59. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +106 -0
  60. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +27 -0
  61. data/lib/rubocop/cop/correctors/space_corrector.rb +46 -0
  62. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +23 -0
  63. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +40 -0
  64. data/lib/rubocop/cop/documentation.rb +22 -0
  65. data/lib/rubocop/cop/exclude_limit.rb +26 -0
  66. data/lib/rubocop/cop/force.rb +3 -1
  67. data/lib/rubocop/cop/gemspec/date_assignment.rb +57 -0
  68. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +105 -0
  69. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +102 -0
  70. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +113 -0
  71. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +57 -0
  72. data/lib/rubocop/cop/generator.rb +212 -0
  73. data/lib/rubocop/cop/generator/configuration_injector.rb +65 -0
  74. data/lib/rubocop/cop/generator/require_file_injector.rb +75 -0
  75. data/lib/rubocop/cop/ignored_node.rb +1 -3
  76. data/lib/rubocop/cop/internal_affairs.rb +15 -0
  77. data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +68 -0
  78. data/lib/rubocop/cop/internal_affairs/example_description.rb +92 -0
  79. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +50 -0
  80. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  81. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +151 -0
  82. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +41 -0
  83. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +56 -0
  84. data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +62 -0
  85. data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +65 -0
  86. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +53 -0
  87. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +76 -0
  88. data/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +148 -0
  89. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  90. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +100 -0
  91. data/lib/rubocop/cop/layout/argument_alignment.rb +110 -0
  92. data/lib/rubocop/cop/layout/array_alignment.rb +84 -0
  93. data/lib/rubocop/cop/{style/indent_assignment.rb → layout/assignment_indentation.rb} +21 -7
  94. data/lib/rubocop/cop/layout/begin_end_alignment.rb +74 -0
  95. data/lib/rubocop/cop/{lint → layout}/block_alignment.rb +67 -60
  96. data/lib/rubocop/cop/layout/block_end_newline.rb +60 -0
  97. data/lib/rubocop/cop/layout/case_indentation.rb +203 -0
  98. data/lib/rubocop/cop/layout/class_structure.rb +324 -0
  99. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +124 -0
  100. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +191 -0
  101. data/lib/rubocop/cop/layout/comment_indentation.rb +137 -0
  102. data/lib/rubocop/cop/{lint → layout}/condition_position.rb +20 -8
  103. data/lib/rubocop/cop/{lint → layout}/def_end_alignment.rb +19 -24
  104. data/lib/rubocop/cop/{style → layout}/dot_position.rb +47 -27
  105. data/lib/rubocop/cop/layout/else_alignment.rb +156 -0
  106. data/lib/rubocop/cop/layout/empty_comment.rb +151 -0
  107. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +174 -0
  108. data/lib/rubocop/cop/{style → layout}/empty_line_after_magic_comment.rb +18 -17
  109. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  110. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +252 -0
  111. data/lib/rubocop/cop/{style → layout}/empty_lines.rb +26 -15
  112. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +206 -0
  113. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +103 -0
  114. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  115. data/lib/rubocop/cop/{style → layout}/empty_lines_around_begin_body.rb +7 -7
  116. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +38 -0
  117. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +85 -0
  118. data/lib/rubocop/cop/{style → layout}/empty_lines_around_exception_handling_keywords.rb +16 -17
  119. data/lib/rubocop/cop/{style → layout}/empty_lines_around_method_body.rb +10 -9
  120. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +59 -0
  121. data/lib/rubocop/cop/{lint → layout}/end_alignment.rb +59 -33
  122. data/lib/rubocop/cop/layout/end_of_line.rb +92 -0
  123. data/lib/rubocop/cop/layout/extra_spacing.rb +182 -0
  124. data/lib/rubocop/cop/layout/first_argument_indentation.rb +276 -0
  125. data/lib/rubocop/cop/layout/first_array_element_indentation.rb +173 -0
  126. data/lib/rubocop/cop/{style → layout}/first_array_element_line_break.rb +5 -5
  127. data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +200 -0
  128. data/lib/rubocop/cop/{style → layout}/first_hash_element_line_break.rb +4 -4
  129. data/lib/rubocop/cop/{style → layout}/first_method_argument_line_break.rb +9 -10
  130. data/lib/rubocop/cop/{style → layout}/first_method_parameter_line_break.rb +7 -7
  131. data/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
  132. data/lib/rubocop/cop/layout/hash_alignment.rb +382 -0
  133. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +305 -0
  134. data/lib/rubocop/cop/layout/heredoc_indentation.rb +172 -0
  135. data/lib/rubocop/cop/layout/indentation_consistency.rb +205 -0
  136. data/lib/rubocop/cop/layout/indentation_style.rb +110 -0
  137. data/lib/rubocop/cop/{style → layout}/indentation_width.rb +138 -66
  138. data/lib/rubocop/cop/layout/initial_indentation.rb +55 -0
  139. data/lib/rubocop/cop/layout/leading_comment_space.rb +121 -0
  140. data/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
  141. data/lib/rubocop/cop/layout/line_length.rb +267 -0
  142. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  143. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +35 -0
  144. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +117 -0
  145. data/lib/rubocop/cop/layout/multiline_block_layout.rb +159 -0
  146. data/lib/rubocop/cop/{style → layout}/multiline_hash_brace_layout.rb +53 -19
  147. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +46 -0
  148. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +47 -0
  149. data/lib/rubocop/cop/{style → layout}/multiline_method_call_brace_layout.rb +69 -35
  150. data/lib/rubocop/cop/{style → layout}/multiline_method_call_indentation.rb +57 -41
  151. data/lib/rubocop/cop/{style → layout}/multiline_method_definition_brace_layout.rb +84 -38
  152. data/lib/rubocop/cop/{style → layout}/multiline_operation_indentation.rb +51 -11
  153. data/lib/rubocop/cop/layout/parameter_alignment.rb +119 -0
  154. data/lib/rubocop/cop/layout/redundant_line_break.rb +137 -0
  155. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +198 -0
  156. data/lib/rubocop/cop/layout/single_line_block_chain.rb +53 -0
  157. data/lib/rubocop/cop/{style → layout}/space_after_colon.rb +19 -10
  158. data/lib/rubocop/cop/layout/space_after_comma.rb +32 -0
  159. data/lib/rubocop/cop/layout/space_after_method_name.rb +39 -0
  160. data/lib/rubocop/cop/{style → layout}/space_after_not.rb +14 -14
  161. data/lib/rubocop/cop/{style → layout}/space_after_semicolon.rb +12 -4
  162. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +162 -0
  163. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +88 -0
  164. data/lib/rubocop/cop/{style → layout}/space_around_keyword.rb +69 -37
  165. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  166. data/lib/rubocop/cop/layout/space_around_operators.rb +241 -0
  167. data/lib/rubocop/cop/layout/space_before_block_braces.rb +152 -0
  168. data/lib/rubocop/cop/layout/space_before_brackets.rb +65 -0
  169. data/lib/rubocop/cop/layout/space_before_comma.rb +29 -0
  170. data/lib/rubocop/cop/layout/space_before_comment.rb +34 -0
  171. data/lib/rubocop/cop/{style → layout}/space_before_first_arg.rb +24 -17
  172. data/lib/rubocop/cop/layout/space_before_semicolon.rb +24 -0
  173. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +72 -0
  174. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +222 -0
  175. data/lib/rubocop/cop/{style → layout}/space_inside_array_percent_literal.rb +10 -20
  176. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +243 -0
  177. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +181 -0
  178. data/lib/rubocop/cop/layout/space_inside_parens.rb +130 -0
  179. data/lib/rubocop/cop/{style → layout}/space_inside_percent_literal_delimiters.rb +16 -20
  180. data/lib/rubocop/cop/{style → layout}/space_inside_range_literal.rb +8 -17
  181. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +139 -0
  182. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +64 -0
  183. data/lib/rubocop/cop/layout/trailing_empty_lines.rb +108 -0
  184. data/lib/rubocop/cop/layout/trailing_whitespace.rb +101 -0
  185. data/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
  186. data/lib/rubocop/cop/legacy/corrector.rb +27 -0
  187. data/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
  188. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +30 -22
  189. data/lib/rubocop/cop/lint/ambiguous_operator.rb +57 -9
  190. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +37 -7
  191. data/lib/rubocop/cop/lint/assignment_in_condition.rb +40 -23
  192. data/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  193. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +55 -0
  194. data/lib/rubocop/cop/lint/boolean_symbol.rb +58 -0
  195. data/lib/rubocop/cop/lint/circular_argument_reference.rb +5 -16
  196. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
  197. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  198. data/lib/rubocop/cop/lint/debugger.rb +63 -33
  199. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +101 -41
  200. data/lib/rubocop/cop/lint/deprecated_constants.rb +80 -0
  201. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +148 -0
  202. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +87 -0
  203. data/lib/rubocop/cop/lint/duplicate_branch.rb +154 -0
  204. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +4 -14
  205. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  206. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +3 -5
  207. data/lib/rubocop/cop/lint/duplicate_methods.rb +108 -24
  208. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +77 -0
  209. data/lib/rubocop/cop/lint/duplicate_require.rb +47 -0
  210. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  211. data/lib/rubocop/cop/lint/each_with_object_argument.rb +9 -4
  212. data/lib/rubocop/cop/lint/else_layout.rb +33 -8
  213. data/lib/rubocop/cop/lint/empty_block.rb +98 -0
  214. data/lib/rubocop/cop/lint/empty_class.rb +93 -0
  215. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  216. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -8
  217. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  218. data/lib/rubocop/cop/lint/empty_file.rb +48 -0
  219. data/lib/rubocop/cop/lint/empty_in_pattern.rb +62 -0
  220. data/lib/rubocop/cop/lint/empty_interpolation.rb +8 -11
  221. data/lib/rubocop/cop/lint/empty_when.rb +32 -9
  222. data/lib/rubocop/cop/lint/ensure_return.rb +31 -15
  223. data/lib/rubocop/cop/lint/erb_new_arguments.rb +162 -0
  224. data/lib/rubocop/cop/lint/flip_flop.rb +38 -0
  225. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  226. data/lib/rubocop/cop/lint/float_out_of_range.rb +6 -7
  227. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +93 -81
  228. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +38 -0
  229. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +154 -0
  230. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  231. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +27 -21
  232. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +44 -66
  233. data/lib/rubocop/cop/lint/inherit_exception.rb +43 -21
  234. data/lib/rubocop/cop/lint/interpolation_check.rb +53 -0
  235. data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +44 -0
  236. data/lib/rubocop/cop/lint/{literal_in_condition.rb → literal_as_condition.rb} +48 -28
  237. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +71 -20
  238. data/lib/rubocop/cop/lint/loop.rb +31 -9
  239. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +81 -0
  240. data/lib/rubocop/cop/lint/missing_super.rb +101 -0
  241. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +36 -0
  242. data/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  243. data/lib/rubocop/cop/lint/nested_method_definition.rb +23 -28
  244. data/lib/rubocop/cop/lint/nested_percent_literal.rb +63 -0
  245. data/lib/rubocop/cop/lint/next_without_accumulator.rb +5 -4
  246. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  247. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +169 -0
  248. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +20 -19
  249. data/lib/rubocop/cop/lint/number_conversion.rb +155 -0
  250. data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +47 -0
  251. data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +39 -0
  252. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +83 -0
  253. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +96 -0
  254. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +40 -17
  255. data/lib/rubocop/cop/lint/percent_string_array.rb +18 -34
  256. data/lib/rubocop/cop/lint/percent_symbol_array.rb +19 -17
  257. data/lib/rubocop/cop/lint/raise_exception.rb +87 -0
  258. data/lib/rubocop/cop/lint/rand_one.rb +13 -6
  259. data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +262 -0
  260. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +128 -0
  261. data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +50 -0
  262. data/lib/rubocop/cop/lint/redundant_require_statement.rb +49 -0
  263. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +77 -0
  264. data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +209 -0
  265. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +52 -0
  266. data/lib/rubocop/cop/lint/redundant_with_index.rb +77 -0
  267. data/lib/rubocop/cop/lint/redundant_with_object.rb +78 -0
  268. data/lib/rubocop/cop/lint/regexp_as_condition.rb +31 -0
  269. data/lib/rubocop/cop/lint/require_parentheses.rb +11 -8
  270. data/lib/rubocop/cop/lint/rescue_exception.rb +5 -5
  271. data/lib/rubocop/cop/lint/rescue_type.rb +88 -0
  272. data/lib/rubocop/cop/lint/return_in_void_context.rb +71 -0
  273. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +22 -30
  274. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +92 -0
  275. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  276. data/lib/rubocop/cop/lint/script_permission.rb +73 -0
  277. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  278. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
  279. data/lib/rubocop/cop/lint/shadowed_argument.rb +176 -0
  280. data/lib/rubocop/cop/lint/shadowed_exception.rb +77 -43
  281. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +24 -10
  282. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  283. data/lib/rubocop/cop/lint/suppressed_exception.rb +132 -0
  284. data/lib/rubocop/cop/lint/symbol_conversion.rb +178 -0
  285. data/lib/rubocop/cop/lint/syntax.rb +17 -32
  286. data/lib/rubocop/cop/lint/to_enum_arguments.rb +89 -0
  287. data/lib/rubocop/cop/lint/to_json.rb +49 -0
  288. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  289. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  290. data/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
  291. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +31 -13
  292. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +85 -0
  293. data/lib/rubocop/cop/lint/unified_integer.rb +10 -10
  294. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  295. data/lib/rubocop/cop/lint/unreachable_code.rb +57 -12
  296. data/lib/rubocop/cop/lint/unreachable_loop.rb +196 -0
  297. data/lib/rubocop/cop/lint/unused_block_argument.rb +41 -14
  298. data/lib/rubocop/cop/lint/unused_method_argument.rb +70 -14
  299. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +79 -0
  300. data/lib/rubocop/cop/lint/uri_regexp.rb +38 -0
  301. data/lib/rubocop/cop/lint/useless_access_modifier.rb +120 -59
  302. data/lib/rubocop/cop/lint/useless_assignment.rb +13 -20
  303. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +10 -11
  304. data/lib/rubocop/cop/lint/useless_method_definition.rb +68 -0
  305. data/lib/rubocop/cop/lint/useless_setter_call.rb +30 -22
  306. data/lib/rubocop/cop/lint/useless_times.rb +109 -0
  307. data/lib/rubocop/cop/lint/void.rb +82 -50
  308. data/lib/rubocop/cop/message_annotator.rb +48 -24
  309. data/lib/rubocop/cop/metrics/abc_size.rb +29 -20
  310. data/lib/rubocop/cop/metrics/block_length.rb +54 -6
  311. data/lib/rubocop/cop/metrics/block_nesting.rb +7 -11
  312. data/lib/rubocop/cop/metrics/class_length.rb +44 -3
  313. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +38 -5
  314. data/lib/rubocop/cop/metrics/method_length.rb +43 -6
  315. data/lib/rubocop/cop/metrics/module_length.rb +35 -3
  316. data/lib/rubocop/cop/metrics/parameter_lists.rb +80 -8
  317. data/lib/rubocop/cop/metrics/perceived_complexity.rb +8 -10
  318. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +145 -0
  319. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +160 -0
  320. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  321. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
  322. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  323. data/lib/rubocop/cop/migration/department_name.rb +79 -0
  324. data/lib/rubocop/cop/mixin/alignment.rb +81 -0
  325. data/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
  326. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  327. data/lib/rubocop/cop/mixin/annotation_comment.rb +6 -0
  328. data/lib/rubocop/cop/mixin/array_min_size.rb +57 -0
  329. data/lib/rubocop/cop/mixin/array_syntax.rb +3 -1
  330. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  331. data/lib/rubocop/cop/mixin/check_assignment.rb +13 -9
  332. data/lib/rubocop/cop/mixin/check_line_breakable.rb +214 -0
  333. data/lib/rubocop/cop/mixin/code_length.rb +33 -6
  334. data/lib/rubocop/cop/mixin/comments_help.rb +42 -0
  335. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +20 -18
  336. data/lib/rubocop/cop/mixin/configurable_formatting.rb +5 -13
  337. data/lib/rubocop/cop/mixin/configurable_max.rb +7 -2
  338. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  339. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  340. data/lib/rubocop/cop/mixin/def_node.rb +12 -8
  341. data/lib/rubocop/cop/mixin/documentation_comment.rb +13 -10
  342. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +45 -34
  343. data/lib/rubocop/cop/mixin/empty_parameter.rb +25 -0
  344. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +29 -33
  345. data/lib/rubocop/cop/mixin/enforce_superclass.rb +38 -0
  346. data/lib/rubocop/cop/mixin/first_element_line_break.rb +17 -12
  347. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +35 -10
  348. data/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
  349. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +55 -16
  350. data/lib/rubocop/cop/mixin/hash_transform_method.rb +183 -0
  351. data/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  352. data/lib/rubocop/cop/mixin/ignored_methods.rb +52 -0
  353. data/lib/rubocop/cop/mixin/ignored_pattern.rb +3 -1
  354. data/lib/rubocop/cop/mixin/integer_node.rb +3 -1
  355. data/lib/rubocop/cop/mixin/interpolation.rb +25 -0
  356. data/lib/rubocop/cop/mixin/line_length_help.rb +90 -0
  357. data/lib/rubocop/cop/mixin/match_range.rb +6 -5
  358. data/lib/rubocop/cop/mixin/method_complexity.rb +58 -11
  359. data/lib/rubocop/cop/mixin/method_preference.rb +1 -1
  360. data/lib/rubocop/cop/mixin/min_body_length.rb +3 -1
  361. data/lib/rubocop/cop/mixin/{array_hash_indentation.rb → multiline_element_indentation.rb} +11 -6
  362. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +33 -0
  363. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +108 -61
  364. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +31 -42
  365. data/lib/rubocop/cop/mixin/negative_conditional.rb +9 -18
  366. data/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
  367. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +58 -0
  368. data/lib/rubocop/cop/mixin/parentheses.rb +3 -9
  369. data/lib/rubocop/cop/mixin/percent_array.rb +57 -0
  370. data/lib/rubocop/cop/mixin/percent_literal.rb +3 -71
  371. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +95 -9
  372. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +50 -0
  373. data/lib/rubocop/cop/mixin/range_help.rb +128 -0
  374. data/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
  375. data/lib/rubocop/cop/mixin/rescue_node.rb +15 -8
  376. data/lib/rubocop/cop/mixin/safe_assignment.rb +9 -2
  377. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +15 -16
  378. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +19 -18
  379. data/lib/rubocop/cop/mixin/statement_modifier.rb +50 -25
  380. data/lib/rubocop/cop/mixin/string_help.rb +6 -1
  381. data/lib/rubocop/cop/mixin/string_literals_help.rb +5 -17
  382. data/lib/rubocop/cop/mixin/surrounding_space.rb +113 -23
  383. data/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
  384. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  385. data/lib/rubocop/cop/mixin/trailing_body.rb +25 -0
  386. data/lib/rubocop/cop/mixin/trailing_comma.rb +100 -52
  387. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +104 -0
  388. data/lib/rubocop/cop/mixin/unused_argument.rb +6 -19
  389. data/lib/rubocop/cop/mixin/visibility_help.rb +37 -0
  390. data/lib/rubocop/cop/naming/accessor_method_name.rb +71 -0
  391. data/lib/rubocop/cop/naming/ascii_identifiers.rb +93 -0
  392. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
  393. data/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
  394. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +43 -0
  395. data/lib/rubocop/cop/naming/constant_name.rb +84 -0
  396. data/lib/rubocop/cop/{style → naming}/file_name.rb +79 -48
  397. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +68 -0
  398. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  399. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +279 -0
  400. data/lib/rubocop/cop/naming/method_name.rb +81 -0
  401. data/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
  402. data/lib/rubocop/cop/naming/predicate_name.rb +105 -0
  403. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +156 -0
  404. data/lib/rubocop/cop/naming/variable_name.rb +54 -0
  405. data/lib/rubocop/cop/naming/variable_number.rb +146 -0
  406. data/lib/rubocop/cop/offense.rb +74 -23
  407. data/lib/rubocop/cop/registry.rb +140 -23
  408. data/lib/rubocop/cop/security/eval.rb +14 -5
  409. data/lib/rubocop/cop/security/json_load.rb +14 -12
  410. data/lib/rubocop/cop/security/marshal_load.rb +9 -7
  411. data/lib/rubocop/cop/security/open.rb +75 -0
  412. data/lib/rubocop/cop/security/yaml_load.rb +12 -10
  413. data/lib/rubocop/cop/severity.rb +5 -14
  414. data/lib/rubocop/cop/style/access_modifier_declarations.rb +136 -0
  415. data/lib/rubocop/cop/style/accessor_grouping.rb +150 -0
  416. data/lib/rubocop/cop/style/alias.rb +86 -57
  417. data/lib/rubocop/cop/style/and_or.rb +81 -53
  418. data/lib/rubocop/cop/style/arguments_forwarding.rb +143 -0
  419. data/lib/rubocop/cop/style/array_coercion.rb +69 -0
  420. data/lib/rubocop/cop/style/array_join.rb +19 -10
  421. data/lib/rubocop/cop/style/ascii_comments.rb +31 -9
  422. data/lib/rubocop/cop/style/attr.rb +33 -13
  423. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +19 -13
  424. data/lib/rubocop/cop/style/bare_percent_literals.rb +31 -12
  425. data/lib/rubocop/cop/style/begin_block.rb +9 -3
  426. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  427. data/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
  428. data/lib/rubocop/cop/style/block_comments.rb +40 -20
  429. data/lib/rubocop/cop/style/block_delimiters.rb +213 -59
  430. data/lib/rubocop/cop/style/case_equality.rb +67 -4
  431. data/lib/rubocop/cop/style/case_like_if.rb +258 -0
  432. data/lib/rubocop/cop/style/character_literal.rb +22 -15
  433. data/lib/rubocop/cop/style/class_and_module_children.rb +118 -17
  434. data/lib/rubocop/cop/style/class_check.rb +31 -17
  435. data/lib/rubocop/cop/style/class_equality_comparison.rb +67 -0
  436. data/lib/rubocop/cop/style/class_methods.rb +18 -31
  437. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  438. data/lib/rubocop/cop/style/class_vars.rb +48 -7
  439. data/lib/rubocop/cop/style/collection_compact.rb +91 -0
  440. data/lib/rubocop/cop/style/collection_methods.rb +52 -17
  441. data/lib/rubocop/cop/style/colon_method_call.rb +26 -13
  442. data/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  443. data/lib/rubocop/cop/style/combinable_loops.rb +92 -0
  444. data/lib/rubocop/cop/style/command_literal.rb +104 -42
  445. data/lib/rubocop/cop/style/comment_annotation.rb +62 -24
  446. data/lib/rubocop/cop/style/commented_keyword.rb +86 -0
  447. data/lib/rubocop/cop/style/conditional_assignment.rb +143 -182
  448. data/lib/rubocop/cop/style/constant_visibility.rb +106 -0
  449. data/lib/rubocop/cop/style/copyright.rb +42 -35
  450. data/lib/rubocop/cop/style/date_time.rb +88 -0
  451. data/lib/rubocop/cop/style/def_with_parentheses.rb +36 -13
  452. data/lib/rubocop/cop/style/dir.rb +47 -0
  453. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  454. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  455. data/lib/rubocop/cop/style/documentation.rb +114 -22
  456. data/lib/rubocop/cop/style/documentation_method.rb +56 -10
  457. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  458. data/lib/rubocop/cop/style/double_negation.rb +52 -8
  459. data/lib/rubocop/cop/style/each_for_simple_loop.rb +16 -18
  460. data/lib/rubocop/cop/style/each_with_object.rb +34 -17
  461. data/lib/rubocop/cop/style/empty_block_parameter.rb +47 -0
  462. data/lib/rubocop/cop/style/empty_case_condition.rb +32 -13
  463. data/lib/rubocop/cop/style/empty_else.rb +56 -27
  464. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +44 -0
  465. data/lib/rubocop/cop/style/empty_literal.rb +63 -33
  466. data/lib/rubocop/cop/style/empty_method.rb +37 -35
  467. data/lib/rubocop/cop/style/encoding.rb +20 -60
  468. data/lib/rubocop/cop/style/end_block.rb +15 -4
  469. data/lib/rubocop/cop/style/endless_method.rb +101 -0
  470. data/lib/rubocop/cop/style/eval_with_location.rb +237 -0
  471. data/lib/rubocop/cop/style/even_odd.rb +16 -16
  472. data/lib/rubocop/cop/style/expand_path_arguments.rb +196 -0
  473. data/lib/rubocop/cop/style/explicit_block_argument.rb +114 -0
  474. data/lib/rubocop/cop/style/exponential_notation.rb +116 -0
  475. data/lib/rubocop/cop/style/float_division.rb +143 -0
  476. data/lib/rubocop/cop/style/for.rb +49 -17
  477. data/lib/rubocop/cop/style/format_string.rb +97 -10
  478. data/lib/rubocop/cop/style/format_string_token.rb +177 -0
  479. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +155 -47
  480. data/lib/rubocop/cop/style/global_std_stream.rb +66 -0
  481. data/lib/rubocop/cop/style/global_vars.rb +16 -6
  482. data/lib/rubocop/cop/style/guard_clause.rb +69 -18
  483. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  484. data/lib/rubocop/cop/style/hash_conversion.rb +133 -0
  485. data/lib/rubocop/cop/style/hash_each_methods.rb +103 -0
  486. data/lib/rubocop/cop/style/hash_except.rb +96 -0
  487. data/lib/rubocop/cop/style/hash_like_case.rb +77 -0
  488. data/lib/rubocop/cop/style/hash_syntax.rb +99 -94
  489. data/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
  490. data/lib/rubocop/cop/style/hash_transform_values.rb +92 -0
  491. data/lib/rubocop/cop/style/identical_conditional_branches.rb +53 -29
  492. data/lib/rubocop/cop/style/if_inside_else.rb +101 -11
  493. data/lib/rubocop/cop/style/if_unless_modifier.rb +162 -44
  494. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +13 -4
  495. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +122 -0
  496. data/lib/rubocop/cop/style/if_with_semicolon.rb +62 -4
  497. data/lib/rubocop/cop/style/implicit_runtime_error.rb +10 -7
  498. data/lib/rubocop/cop/style/in_pattern_then.rb +56 -0
  499. data/lib/rubocop/cop/style/infinite_loop.rb +65 -27
  500. data/lib/rubocop/cop/style/inline_comment.rb +7 -5
  501. data/lib/rubocop/cop/style/inverse_methods.rb +99 -44
  502. data/lib/rubocop/cop/style/ip_addresses.rb +75 -0
  503. data/lib/rubocop/cop/style/keyword_parameters_order.rb +75 -0
  504. data/lib/rubocop/cop/style/lambda.rb +26 -110
  505. data/lib/rubocop/cop/style/lambda_call.rb +29 -19
  506. data/lib/rubocop/cop/style/line_end_concatenation.rb +40 -34
  507. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +185 -52
  508. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +189 -0
  509. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +44 -0
  510. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +27 -18
  511. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +19 -10
  512. data/lib/rubocop/cop/style/method_def_parentheses.rb +122 -45
  513. data/lib/rubocop/cop/style/min_max.rb +64 -0
  514. data/lib/rubocop/cop/style/missing_else.rb +88 -20
  515. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +52 -0
  516. data/lib/rubocop/cop/style/mixin_grouping.rb +66 -28
  517. data/lib/rubocop/cop/style/mixin_usage.rb +72 -0
  518. data/lib/rubocop/cop/style/module_function.rb +111 -26
  519. data/lib/rubocop/cop/style/multiline_block_chain.rb +21 -15
  520. data/lib/rubocop/cop/style/multiline_if_modifier.rb +8 -11
  521. data/lib/rubocop/cop/style/multiline_if_then.rb +14 -17
  522. data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +62 -0
  523. data/lib/rubocop/cop/style/multiline_memoization.rb +44 -25
  524. data/lib/rubocop/cop/style/multiline_method_signature.rb +91 -0
  525. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +45 -5
  526. data/lib/rubocop/cop/style/multiline_when_then.rb +75 -0
  527. data/lib/rubocop/cop/style/multiple_comparison.rb +157 -0
  528. data/lib/rubocop/cop/style/mutable_constant.rb +132 -18
  529. data/lib/rubocop/cop/style/negated_if.rb +33 -38
  530. data/lib/rubocop/cop/style/negated_if_else_condition.rb +128 -0
  531. data/lib/rubocop/cop/style/negated_unless.rb +88 -0
  532. data/lib/rubocop/cop/style/negated_while.rb +25 -17
  533. data/lib/rubocop/cop/style/nested_modifier.rb +36 -23
  534. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +38 -29
  535. data/lib/rubocop/cop/style/nested_ternary_operator.rb +41 -4
  536. data/lib/rubocop/cop/style/next.rb +77 -67
  537. data/lib/rubocop/cop/style/nil_comparison.rb +62 -14
  538. data/lib/rubocop/cop/style/nil_lambda.rb +70 -0
  539. data/lib/rubocop/cop/style/non_nil_check.rb +100 -63
  540. data/lib/rubocop/cop/style/not.rb +38 -31
  541. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +47 -25
  542. data/lib/rubocop/cop/style/numeric_literals.rb +40 -35
  543. data/lib/rubocop/cop/style/numeric_predicate.rb +33 -43
  544. data/lib/rubocop/cop/style/one_line_conditional.rb +100 -28
  545. data/lib/rubocop/cop/style/option_hash.rb +21 -25
  546. data/lib/rubocop/cop/style/optional_arguments.rb +4 -11
  547. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  548. data/lib/rubocop/cop/style/or_assignment.rb +97 -0
  549. data/lib/rubocop/cop/style/parallel_assignment.rb +42 -48
  550. data/lib/rubocop/cop/style/parentheses_around_condition.rb +76 -14
  551. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +42 -23
  552. data/lib/rubocop/cop/style/percent_q_literals.rb +31 -13
  553. data/lib/rubocop/cop/style/perl_backrefs.rb +91 -16
  554. data/lib/rubocop/cop/style/preferred_hash_methods.rb +15 -24
  555. data/lib/rubocop/cop/style/proc.rb +18 -10
  556. data/lib/rubocop/cop/style/quoted_symbols.rb +105 -0
  557. data/lib/rubocop/cop/style/raise_args.rb +53 -46
  558. data/lib/rubocop/cop/style/random_with_offset.rb +153 -0
  559. data/lib/rubocop/cop/style/redundant_argument.rb +85 -0
  560. data/lib/rubocop/cop/style/redundant_assignment.rb +106 -0
  561. data/lib/rubocop/cop/style/redundant_begin.rb +119 -9
  562. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +17 -11
  563. data/lib/rubocop/cop/style/redundant_condition.rb +137 -0
  564. data/lib/rubocop/cop/style/redundant_conditional.rb +96 -0
  565. data/lib/rubocop/cop/style/redundant_exception.rb +28 -18
  566. data/lib/rubocop/cop/style/redundant_fetch_block.rb +115 -0
  567. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +52 -0
  568. data/lib/rubocop/cop/style/redundant_freeze.rb +37 -13
  569. data/lib/rubocop/cop/style/redundant_interpolation.rb +103 -0
  570. data/lib/rubocop/cop/style/redundant_parentheses.rb +99 -54
  571. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +39 -26
  572. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +104 -0
  573. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +118 -0
  574. data/lib/rubocop/cop/style/redundant_return.rb +109 -59
  575. data/lib/rubocop/cop/style/redundant_self.rb +75 -50
  576. data/lib/rubocop/cop/style/redundant_self_assignment.rb +118 -0
  577. data/lib/rubocop/cop/style/redundant_sort.rb +160 -0
  578. data/lib/rubocop/cop/{performance → style}/redundant_sort_by.rb +15 -13
  579. data/lib/rubocop/cop/style/regexp_literal.rb +142 -43
  580. data/lib/rubocop/cop/style/rescue_modifier.rb +77 -14
  581. data/lib/rubocop/cop/style/rescue_standard_error.rb +126 -0
  582. data/lib/rubocop/cop/style/return_nil.rb +94 -0
  583. data/lib/rubocop/cop/style/safe_navigation.rb +193 -58
  584. data/lib/rubocop/cop/{performance → style}/sample.rb +29 -26
  585. data/lib/rubocop/cop/style/self_assignment.rb +24 -16
  586. data/lib/rubocop/cop/style/semicolon.rb +48 -17
  587. data/lib/rubocop/cop/style/send.rb +15 -7
  588. data/lib/rubocop/cop/style/signal_exception.rb +134 -27
  589. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  590. data/lib/rubocop/cop/style/single_line_block_params.rb +72 -23
  591. data/lib/rubocop/cop/style/single_line_methods.rb +95 -37
  592. data/lib/rubocop/cop/style/slicing_with_range.rb +38 -0
  593. data/lib/rubocop/cop/style/sole_nested_conditional.rb +176 -0
  594. data/lib/rubocop/cop/style/special_global_vars.rb +80 -58
  595. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +35 -69
  596. data/lib/rubocop/cop/style/static_class.rb +97 -0
  597. data/lib/rubocop/cop/style/stderr_puts.rb +57 -0
  598. data/lib/rubocop/cop/style/string_chars.rb +39 -0
  599. data/lib/rubocop/cop/style/string_concatenation.rb +142 -0
  600. data/lib/rubocop/cop/style/string_hash_keys.rb +51 -0
  601. data/lib/rubocop/cop/style/string_literals.rb +44 -13
  602. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +24 -3
  603. data/lib/rubocop/cop/style/string_methods.rb +17 -15
  604. data/lib/rubocop/cop/{performance/lstrip_rstrip.rb → style/strip.rb} +18 -17
  605. data/lib/rubocop/cop/style/struct_inheritance.rb +45 -9
  606. data/lib/rubocop/cop/style/swap_values.rb +108 -0
  607. data/lib/rubocop/cop/style/symbol_array.rb +56 -46
  608. data/lib/rubocop/cop/style/symbol_literal.rb +6 -10
  609. data/lib/rubocop/cop/style/symbol_proc.rb +63 -78
  610. data/lib/rubocop/cop/style/ternary_parentheses.rb +95 -77
  611. data/lib/rubocop/cop/style/top_level_method_definition.rb +83 -0
  612. data/lib/rubocop/cop/style/trailing_body_on_class.rb +40 -0
  613. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +55 -0
  614. data/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
  615. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +69 -27
  616. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +96 -0
  617. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +86 -0
  618. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +97 -0
  619. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +65 -0
  620. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +79 -40
  621. data/lib/rubocop/cop/style/trivial_accessors.rb +158 -82
  622. data/lib/rubocop/cop/style/unless_else.rb +25 -13
  623. data/lib/rubocop/cop/style/unless_logical_operators.rb +105 -0
  624. data/lib/rubocop/cop/style/unpack_first.rb +59 -0
  625. data/lib/rubocop/cop/style/variable_interpolation.rb +26 -25
  626. data/lib/rubocop/cop/style/when_then.rb +20 -7
  627. data/lib/rubocop/cop/style/while_until_do.rb +31 -18
  628. data/lib/rubocop/cop/style/while_until_modifier.rb +36 -24
  629. data/lib/rubocop/cop/style/word_array.rb +40 -91
  630. data/lib/rubocop/cop/style/yoda_condition.rb +155 -0
  631. data/lib/rubocop/cop/style/zero_length_predicate.rb +60 -31
  632. data/lib/rubocop/cop/team.rb +171 -105
  633. data/lib/rubocop/cop/util.rb +44 -194
  634. data/lib/rubocop/cop/utils/format_string.rb +133 -0
  635. data/lib/rubocop/cop/variable_force.rb +47 -51
  636. data/lib/rubocop/cop/variable_force/assignment.rb +10 -4
  637. data/lib/rubocop/cop/variable_force/branch.rb +22 -9
  638. data/lib/rubocop/cop/variable_force/branchable.rb +2 -0
  639. data/lib/rubocop/cop/variable_force/reference.rb +1 -3
  640. data/lib/rubocop/cop/variable_force/scope.rb +13 -14
  641. data/lib/rubocop/cop/variable_force/variable.rb +25 -14
  642. data/lib/rubocop/cop/variable_force/variable_table.rb +4 -3
  643. data/lib/rubocop/cops_documentation_generator.rb +270 -0
  644. data/lib/rubocop/core_ext/string.rb +23 -0
  645. data/lib/rubocop/directive_comment.rb +96 -0
  646. data/lib/rubocop/error.rb +24 -0
  647. data/lib/rubocop/ext/processed_source.rb +18 -0
  648. data/lib/rubocop/ext/regexp_node.rb +87 -0
  649. data/lib/rubocop/ext/regexp_parser.rb +92 -0
  650. data/lib/rubocop/file_finder.rb +41 -0
  651. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
  652. data/lib/rubocop/formatter/base_formatter.rb +3 -7
  653. data/lib/rubocop/formatter/clang_style_formatter.rb +13 -8
  654. data/lib/rubocop/formatter/disabled_config_formatter.rb +110 -58
  655. data/lib/rubocop/formatter/emacs_style_formatter.rb +24 -9
  656. data/lib/rubocop/formatter/file_list_formatter.rb +2 -1
  657. data/lib/rubocop/formatter/formatter_set.rb +20 -16
  658. data/lib/rubocop/formatter/fuubar_style_formatter.rb +2 -2
  659. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +44 -0
  660. data/lib/rubocop/formatter/html_formatter.rb +18 -15
  661. data/lib/rubocop/formatter/json_formatter.rb +17 -14
  662. data/lib/rubocop/formatter/junit_formatter.rb +93 -0
  663. data/lib/rubocop/formatter/offense_count_formatter.rb +21 -2
  664. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  665. data/lib/rubocop/formatter/progress_formatter.rb +4 -5
  666. data/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  667. data/lib/rubocop/formatter/simple_text_formatter.rb +61 -26
  668. data/lib/rubocop/formatter/tap_formatter.rb +86 -0
  669. data/lib/rubocop/formatter/worst_offenders_formatter.rb +4 -2
  670. data/lib/rubocop/lockfile.rb +40 -0
  671. data/lib/rubocop/magic_comment.rb +45 -12
  672. data/lib/rubocop/name_similarity.rb +18 -10
  673. data/lib/rubocop/options.rb +311 -140
  674. data/lib/rubocop/path_util.rb +57 -5
  675. data/lib/rubocop/platform.rb +1 -1
  676. data/lib/rubocop/rake_task.rb +27 -32
  677. data/lib/rubocop/remote_config.rb +32 -8
  678. data/lib/rubocop/result_cache.rb +89 -39
  679. data/lib/rubocop/rspec/cop_helper.rb +18 -46
  680. data/lib/rubocop/rspec/expect_offense.rb +329 -0
  681. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +1 -5
  682. data/lib/rubocop/rspec/shared_contexts.rb +92 -53
  683. data/lib/rubocop/rspec/support.rb +9 -4
  684. data/lib/rubocop/runner.rb +174 -86
  685. data/lib/rubocop/string_interpreter.rb +11 -8
  686. data/lib/rubocop/target_finder.rb +102 -93
  687. data/lib/rubocop/target_ruby.rb +264 -0
  688. data/lib/rubocop/util.rb +16 -0
  689. data/lib/rubocop/version.rb +71 -5
  690. data/lib/rubocop/yaml_duplication_checker.rb +40 -0
  691. metadata +495 -233
  692. data/bin/rubocop +0 -17
  693. data/config/disabled.yml +0 -119
  694. data/config/enabled.yml +0 -1713
  695. data/lib/rubocop/ast/builder.rb +0 -64
  696. data/lib/rubocop/ast/node.rb +0 -610
  697. data/lib/rubocop/ast/node/and_node.rb +0 -37
  698. data/lib/rubocop/ast/node/array_node.rb +0 -48
  699. data/lib/rubocop/ast/node/case_node.rb +0 -64
  700. data/lib/rubocop/ast/node/ensure_node.rb +0 -25
  701. data/lib/rubocop/ast/node/for_node.rb +0 -53
  702. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  703. data/lib/rubocop/ast/node/if_node.rb +0 -138
  704. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  705. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -23
  706. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  707. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  708. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  709. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  710. data/lib/rubocop/ast/node/or_node.rb +0 -37
  711. data/lib/rubocop/ast/node/pair_node.rb +0 -64
  712. data/lib/rubocop/ast/node/resbody_node.rb +0 -25
  713. data/lib/rubocop/ast/node/send_node.rb +0 -195
  714. data/lib/rubocop/ast/node/until_node.rb +0 -43
  715. data/lib/rubocop/ast/node/when_node.rb +0 -61
  716. data/lib/rubocop/ast/node/while_node.rb +0 -43
  717. data/lib/rubocop/ast/sexp.rb +0 -16
  718. data/lib/rubocop/ast/traversal.rb +0 -171
  719. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  720. data/lib/rubocop/cop/lint/handle_exceptions.rb +0 -56
  721. data/lib/rubocop/cop/lint/invalid_character_literal.rb +0 -41
  722. data/lib/rubocop/cop/lint/multiple_compare.rb +0 -48
  723. data/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +0 -58
  724. data/lib/rubocop/cop/lint/unneeded_disable.rb +0 -231
  725. data/lib/rubocop/cop/lint/unneeded_splat_expansion.rb +0 -141
  726. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  727. data/lib/rubocop/cop/metrics/line_length.rb +0 -168
  728. data/lib/rubocop/cop/mixin/access_modifier_node.rb +0 -41
  729. data/lib/rubocop/cop/mixin/autocorrect_alignment.rb +0 -149
  730. data/lib/rubocop/cop/mixin/classish_length.rb +0 -36
  731. data/lib/rubocop/cop/mixin/on_method_def.rb +0 -44
  732. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -34
  733. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  734. data/lib/rubocop/cop/mixin/space_inside.rb +0 -76
  735. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  736. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -39
  737. data/lib/rubocop/cop/performance/case_when_splat.rb +0 -176
  738. data/lib/rubocop/cop/performance/casecmp.rb +0 -107
  739. data/lib/rubocop/cop/performance/compare_with_block.rb +0 -61
  740. data/lib/rubocop/cop/performance/count.rb +0 -98
  741. data/lib/rubocop/cop/performance/detect.rb +0 -107
  742. data/lib/rubocop/cop/performance/double_start_end_with.rb +0 -102
  743. data/lib/rubocop/cop/performance/end_with.rb +0 -55
  744. data/lib/rubocop/cop/performance/fixed_size.rb +0 -56
  745. data/lib/rubocop/cop/performance/flat_map.rb +0 -73
  746. data/lib/rubocop/cop/performance/hash_each_methods.rb +0 -84
  747. data/lib/rubocop/cop/performance/range_include.rb +0 -41
  748. data/lib/rubocop/cop/performance/redundant_block_call.rb +0 -93
  749. data/lib/rubocop/cop/performance/redundant_match.rb +0 -55
  750. data/lib/rubocop/cop/performance/redundant_merge.rb +0 -149
  751. data/lib/rubocop/cop/performance/regexp_match.rb +0 -215
  752. data/lib/rubocop/cop/performance/reverse_each.rb +0 -40
  753. data/lib/rubocop/cop/performance/size.rb +0 -71
  754. data/lib/rubocop/cop/performance/start_with.rb +0 -58
  755. data/lib/rubocop/cop/performance/string_replacement.rb +0 -170
  756. data/lib/rubocop/cop/performance/times_map.rb +0 -61
  757. data/lib/rubocop/cop/rails/action_filter.rb +0 -96
  758. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -68
  759. data/lib/rubocop/cop/rails/blank.rb +0 -132
  760. data/lib/rubocop/cop/rails/date.rb +0 -127
  761. data/lib/rubocop/cop/rails/delegate.rb +0 -106
  762. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -51
  763. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -81
  764. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -43
  765. data/lib/rubocop/cop/rails/exit.rb +0 -61
  766. data/lib/rubocop/cop/rails/file_path.rb +0 -75
  767. data/lib/rubocop/cop/rails/find_by.rb +0 -51
  768. data/lib/rubocop/cop/rails/find_each.rb +0 -47
  769. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -18
  770. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -106
  771. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  772. data/lib/rubocop/cop/rails/output.rb +0 -23
  773. data/lib/rubocop/cop/rails/output_safety.rb +0 -54
  774. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -106
  775. data/lib/rubocop/cop/rails/present.rb +0 -137
  776. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -65
  777. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -57
  778. data/lib/rubocop/cop/rails/request_referer.rb +0 -56
  779. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -216
  780. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -91
  781. data/lib/rubocop/cop/rails/save_bang.rb +0 -155
  782. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  783. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -63
  784. data/lib/rubocop/cop/rails/time_zone.rb +0 -197
  785. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -93
  786. data/lib/rubocop/cop/rails/validation.rb +0 -64
  787. data/lib/rubocop/cop/style/access_modifier_indentation.rb +0 -80
  788. data/lib/rubocop/cop/style/accessor_method_name.rb +0 -45
  789. data/lib/rubocop/cop/style/align_array.rb +0 -20
  790. data/lib/rubocop/cop/style/align_hash.rb +0 -235
  791. data/lib/rubocop/cop/style/align_parameters.rb +0 -69
  792. data/lib/rubocop/cop/style/ascii_identifiers.rb +0 -36
  793. data/lib/rubocop/cop/style/block_end_newline.rb +0 -56
  794. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -138
  795. data/lib/rubocop/cop/style/case_indentation.rb +0 -100
  796. data/lib/rubocop/cop/style/class_and_module_camel_case.rb +0 -29
  797. data/lib/rubocop/cop/style/closing_parenthesis_indentation.rb +0 -88
  798. data/lib/rubocop/cop/style/comment_indentation.rb +0 -71
  799. data/lib/rubocop/cop/style/constant_name.rb +0 -29
  800. data/lib/rubocop/cop/style/else_alignment.rb +0 -105
  801. data/lib/rubocop/cop/style/empty_line_between_defs.rb +0 -143
  802. data/lib/rubocop/cop/style/empty_lines_around_access_modifier.rb +0 -95
  803. data/lib/rubocop/cop/style/empty_lines_around_block_body.rb +0 -41
  804. data/lib/rubocop/cop/style/empty_lines_around_class_body.rb +0 -39
  805. data/lib/rubocop/cop/style/empty_lines_around_module_body.rb +0 -44
  806. data/lib/rubocop/cop/style/end_of_line.rb +0 -52
  807. data/lib/rubocop/cop/style/extra_spacing.rb +0 -237
  808. data/lib/rubocop/cop/style/first_parameter_indentation.rb +0 -109
  809. data/lib/rubocop/cop/style/flip_flop.rb +0 -20
  810. data/lib/rubocop/cop/style/indent_array.rb +0 -114
  811. data/lib/rubocop/cop/style/indent_hash.rb +0 -134
  812. data/lib/rubocop/cop/style/indent_heredoc.rb +0 -173
  813. data/lib/rubocop/cop/style/indentation_consistency.rb +0 -51
  814. data/lib/rubocop/cop/style/initial_indentation.rb +0 -42
  815. data/lib/rubocop/cop/style/leading_comment_space.rb +0 -43
  816. data/lib/rubocop/cop/style/method_missing.rb +0 -81
  817. data/lib/rubocop/cop/style/method_name.rb +0 -28
  818. data/lib/rubocop/cop/style/multiline_array_brace_layout.rb +0 -81
  819. data/lib/rubocop/cop/style/multiline_assignment_layout.rb +0 -88
  820. data/lib/rubocop/cop/style/multiline_block_layout.rb +0 -134
  821. data/lib/rubocop/cop/style/op_method.rb +0 -41
  822. data/lib/rubocop/cop/style/predicate_name.rb +0 -67
  823. data/lib/rubocop/cop/style/rescue_ensure_alignment.rb +0 -86
  824. data/lib/rubocop/cop/style/space_after_comma.rb +0 -21
  825. data/lib/rubocop/cop/style/space_after_method_name.rb +0 -37
  826. data/lib/rubocop/cop/style/space_around_block_parameters.rb +0 -109
  827. data/lib/rubocop/cop/style/space_around_equals_in_parameter_default.rb +0 -68
  828. data/lib/rubocop/cop/style/space_around_operators.rb +0 -142
  829. data/lib/rubocop/cop/style/space_before_block_braces.rb +0 -54
  830. data/lib/rubocop/cop/style/space_before_comma.rb +0 -16
  831. data/lib/rubocop/cop/style/space_before_comment.rb +0 -27
  832. data/lib/rubocop/cop/style/space_before_semicolon.rb +0 -16
  833. data/lib/rubocop/cop/style/space_in_lambda_literal.rb +0 -87
  834. data/lib/rubocop/cop/style/space_inside_block_braces.rb +0 -158
  835. data/lib/rubocop/cop/style/space_inside_brackets.rb +0 -20
  836. data/lib/rubocop/cop/style/space_inside_hash_literal_braces.rb +0 -150
  837. data/lib/rubocop/cop/style/space_inside_parens.rb +0 -16
  838. data/lib/rubocop/cop/style/space_inside_string_interpolation.rb +0 -65
  839. data/lib/rubocop/cop/style/tab.rb +0 -57
  840. data/lib/rubocop/cop/style/trailing_blank_lines.rb +0 -78
  841. data/lib/rubocop/cop/style/trailing_comma_in_literal.rb +0 -56
  842. data/lib/rubocop/cop/style/trailing_whitespace.rb +0 -28
  843. data/lib/rubocop/cop/style/unneeded_interpolation.rb +0 -98
  844. data/lib/rubocop/cop/style/variable_name.rb +0 -39
  845. data/lib/rubocop/cop/style/variable_number.rb +0 -78
  846. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  847. data/lib/rubocop/node_pattern.rb +0 -543
  848. data/lib/rubocop/processed_source.rb +0 -151
  849. data/lib/rubocop/rspec/shared_examples.rb +0 -100
  850. data/lib/rubocop/string_util.rb +0 -156
  851. data/lib/rubocop/token.rb +0 -25
@@ -4,13 +4,76 @@ module RuboCop
4
4
  module Cop
5
5
  module Style
6
6
  # This cop checks for uses of the case equality operator(===).
7
- class CaseEquality < Cop
8
- MSG = 'Avoid the use of the case equality operator `===`.'.freeze
7
+ #
8
+ # @example
9
+ # # bad
10
+ # Array === something
11
+ # (1..100) === 7
12
+ # /something/ === some_string
13
+ #
14
+ # # good
15
+ # something.is_a?(Array)
16
+ # (1..100).include?(7)
17
+ # /something/.match?(some_string)
18
+ #
19
+ # @example AllowOnConstant
20
+ # # Style/CaseEquality:
21
+ # # AllowOnConstant: true
22
+ #
23
+ # # bad
24
+ # (1..100) === 7
25
+ # /something/ === some_string
26
+ #
27
+ # # good
28
+ # Array === something
29
+ # (1..100).include?(7)
30
+ # /something/.match?(some_string)
31
+ #
32
+ class CaseEquality < Base
33
+ extend AutoCorrector
9
34
 
10
- def_node_matcher :case_equality?, '(send _ :=== _)'
35
+ MSG = 'Avoid the use of the case equality operator `===`.'
36
+ RESTRICT_ON_SEND = %i[===].freeze
37
+
38
+ # @!method case_equality?(node)
39
+ def_node_matcher :case_equality?, '(send $#const? :=== $_)'
11
40
 
12
41
  def on_send(node)
13
- case_equality?(node) { add_offense(node, :selector) }
42
+ case_equality?(node) do |lhs, rhs|
43
+ return if lhs.const_type? && !lhs.module_name?
44
+
45
+ add_offense(node.loc.selector) do |corrector|
46
+ replacement = replacement(lhs, rhs)
47
+ corrector.replace(node, replacement) if replacement
48
+ end
49
+ end
50
+ end
51
+
52
+ private
53
+
54
+ def const?(node)
55
+ if cop_config.fetch('AllowOnConstant', false)
56
+ !node&.const_type?
57
+ else
58
+ true
59
+ end
60
+ end
61
+
62
+ def replacement(lhs, rhs)
63
+ case lhs.type
64
+ when :regexp
65
+ # The automatic correction from `a === b` to `a.match?(b)` needs to
66
+ # consider `Regexp.last_match?`, `$~`, `$1`, and etc.
67
+ # This correction is expected to be supported by `Performance/Regexp` cop.
68
+ # See: https://github.com/rubocop/rubocop-performance/issues/152
69
+ #
70
+ # So here is noop.
71
+ when :begin
72
+ child = lhs.children.first
73
+ "#{lhs.source}.include?(#{rhs.source})" if child&.range_type?
74
+ when :const
75
+ "#{rhs.source}.is_a?(#{lhs.source})"
76
+ end
14
77
  end
15
78
  end
16
79
  end
@@ -0,0 +1,258 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # This cop identifies places where `if-elsif` constructions
7
+ # can be replaced with `case-when`.
8
+ #
9
+ # @example
10
+ # # bad
11
+ # if status == :active
12
+ # perform_action
13
+ # elsif status == :inactive || status == :hibernating
14
+ # check_timeout
15
+ # else
16
+ # final_action
17
+ # end
18
+ #
19
+ # # good
20
+ # case status
21
+ # when :active
22
+ # perform_action
23
+ # when :inactive, :hibernating
24
+ # check_timeout
25
+ # else
26
+ # final_action
27
+ # end
28
+ #
29
+ class CaseLikeIf < Base
30
+ include RangeHelp
31
+ extend AutoCorrector
32
+
33
+ MSG = 'Convert `if-elsif` to `case-when`.'
34
+
35
+ def on_if(node)
36
+ return unless should_check?(node)
37
+
38
+ target = find_target(node.condition)
39
+ return unless target
40
+
41
+ conditions = []
42
+ convertible = true
43
+
44
+ branch_conditions(node).each do |branch_condition|
45
+ return false if regexp_with_working_captures?(branch_condition)
46
+
47
+ conditions << []
48
+ convertible = collect_conditions(branch_condition, target, conditions.last)
49
+ break unless convertible
50
+ end
51
+
52
+ return unless convertible
53
+
54
+ add_offense(node) { |corrector| autocorrect(corrector, node) }
55
+ end
56
+
57
+ private
58
+
59
+ def autocorrect(corrector, node)
60
+ target = find_target(node.condition)
61
+
62
+ corrector.insert_before(node, "case #{target.source}\n#{indent(node)}")
63
+
64
+ branch_conditions(node).each do |branch_condition|
65
+ conditions = []
66
+ collect_conditions(branch_condition, target, conditions)
67
+
68
+ range = correction_range(branch_condition)
69
+ branch_replacement = "when #{conditions.map(&:source).join(', ')}"
70
+ corrector.replace(range, branch_replacement)
71
+ end
72
+ end
73
+
74
+ def should_check?(node)
75
+ !node.unless? && !node.elsif? && !node.modifier_form? && !node.ternary? &&
76
+ node.elsif_conditional?
77
+ end
78
+
79
+ # rubocop:disable Metrics/MethodLength
80
+ def find_target(node)
81
+ case node.type
82
+ when :begin
83
+ find_target(node.children.first)
84
+ when :or
85
+ find_target(node.lhs)
86
+ when :match_with_lvasgn
87
+ lhs, rhs = *node
88
+ if lhs.regexp_type?
89
+ rhs
90
+ elsif rhs.regexp_type?
91
+ lhs
92
+ end
93
+ when :send
94
+ find_target_in_send_node(node)
95
+ end
96
+ end
97
+ # rubocop:enable Metrics/MethodLength
98
+
99
+ def find_target_in_send_node(node)
100
+ case node.method_name
101
+ when :is_a?
102
+ node.receiver
103
+ when :==, :eql?, :equal?
104
+ find_target_in_equality_node(node)
105
+ when :===
106
+ node.arguments.first
107
+ when :include?, :cover?
108
+ find_target_in_include_or_cover_node(node)
109
+ when :match, :match?, :=~
110
+ find_target_in_match_node(node)
111
+ end
112
+ end
113
+
114
+ def find_target_in_equality_node(node)
115
+ argument = node.arguments.first
116
+ receiver = node.receiver
117
+ return unless argument && receiver
118
+
119
+ if argument.literal? || const_reference?(argument)
120
+ receiver
121
+ elsif receiver.literal? || const_reference?(receiver)
122
+ argument
123
+ end
124
+ end
125
+
126
+ def find_target_in_include_or_cover_node(node)
127
+ return unless (receiver = node.receiver)
128
+
129
+ node.first_argument if deparenthesize(receiver).range_type?
130
+ end
131
+
132
+ def find_target_in_match_node(node)
133
+ argument = node.arguments.first
134
+ receiver = node.receiver
135
+ return unless receiver
136
+
137
+ if receiver.regexp_type?
138
+ argument
139
+ elsif argument.regexp_type?
140
+ receiver
141
+ end
142
+ end
143
+
144
+ def collect_conditions(node, target, conditions)
145
+ condition =
146
+ case node.type
147
+ when :begin
148
+ return collect_conditions(node.children.first, target, conditions)
149
+ when :or
150
+ return collect_conditions(node.lhs, target, conditions) &&
151
+ collect_conditions(node.rhs, target, conditions)
152
+ when :match_with_lvasgn
153
+ lhs, rhs = *node
154
+ condition_from_binary_op(lhs, rhs, target)
155
+ when :send
156
+ condition_from_send_node(node, target)
157
+ end
158
+
159
+ conditions << condition if condition
160
+ end
161
+
162
+ # rubocop:disable Metrics/CyclomaticComplexity
163
+ def condition_from_send_node(node, target)
164
+ case node.method_name
165
+ when :is_a?
166
+ node.arguments.first if node.receiver == target
167
+ when :==, :eql?, :equal?
168
+ condition_from_equality_node(node, target)
169
+ when :=~, :match, :match?
170
+ condition_from_match_node(node, target)
171
+ when :===
172
+ lhs, _method, rhs = *node
173
+ lhs if rhs == target
174
+ when :include?, :cover?
175
+ condition_from_include_or_cover_node(node, target)
176
+ end
177
+ end
178
+ # rubocop:enable Metrics/CyclomaticComplexity
179
+
180
+ def condition_from_equality_node(node, target)
181
+ lhs, _method, rhs = *node
182
+ condition = condition_from_binary_op(lhs, rhs, target)
183
+ condition if condition && !class_reference?(condition)
184
+ end
185
+
186
+ def condition_from_match_node(node, target)
187
+ lhs, _method, rhs = *node
188
+ condition_from_binary_op(lhs, rhs, target)
189
+ end
190
+
191
+ def condition_from_include_or_cover_node(node, target)
192
+ return unless (receiver = node.receiver)
193
+
194
+ receiver = deparenthesize(receiver)
195
+ receiver if receiver.range_type? && node.first_argument == target
196
+ end
197
+
198
+ def condition_from_binary_op(lhs, rhs, target)
199
+ lhs = deparenthesize(lhs)
200
+ rhs = deparenthesize(rhs)
201
+
202
+ if lhs == target
203
+ rhs
204
+ elsif rhs == target
205
+ lhs
206
+ end
207
+ end
208
+
209
+ def branch_conditions(node)
210
+ conditions = []
211
+ while node&.if_type?
212
+ conditions << node.condition
213
+ node = node.else_branch
214
+ end
215
+ conditions
216
+ end
217
+
218
+ def const_reference?(node)
219
+ return false unless node.const_type?
220
+
221
+ name = node.children[1].to_s
222
+
223
+ # We can no be sure if, e.g. `C`, represents a constant or a class reference
224
+ name.length > 1 && name == name.upcase
225
+ end
226
+
227
+ def class_reference?(node)
228
+ node.const_type? && node.children[1].match?(/[[:lower:]]/)
229
+ end
230
+
231
+ def deparenthesize(node)
232
+ node = node.children.last while node.begin_type?
233
+ node
234
+ end
235
+
236
+ def correction_range(node)
237
+ range_between(node.parent.loc.keyword.begin_pos, node.loc.expression.end_pos)
238
+ end
239
+
240
+ # Named captures work with `=~` (if regexp is on lhs) and with `match` (both sides)
241
+ def regexp_with_working_captures?(node)
242
+ case node.type
243
+ when :match_with_lvasgn
244
+ lhs, _rhs = *node
245
+ node.loc.selector.source == '=~' && regexp_with_named_captures?(lhs)
246
+ when :send
247
+ lhs, method, rhs = *node
248
+ method == :match && [lhs, rhs].any? { |n| regexp_with_named_captures?(n) }
249
+ end
250
+ end
251
+
252
+ def regexp_with_named_captures?(node)
253
+ node.regexp_type? && node.each_capture(named: true).count.positive?
254
+ end
255
+ end
256
+ end
257
+ end
258
+ end
@@ -4,29 +4,36 @@ module RuboCop
4
4
  module Cop
5
5
  module Style
6
6
  # Checks for uses of the character literal ?x.
7
- class CharacterLiteral < Cop
7
+ #
8
+ # @example
9
+ # # bad
10
+ # ?x
11
+ #
12
+ # # good
13
+ # 'x'
14
+ #
15
+ # # good
16
+ # ?\C-\M-d
17
+ class CharacterLiteral < Base
8
18
  include StringHelp
19
+ extend AutoCorrector
9
20
 
10
- MSG = 'Do not use the character literal - ' \
11
- 'use string literal instead.'.freeze
21
+ MSG = 'Do not use the character literal - use string literal instead.'
12
22
 
13
23
  def offense?(node)
14
24
  # we don't register an offense for things like ?\C-\M-d
15
- node.loc.begin.is?('?') &&
16
- node.source.size.between?(2, 3)
25
+ node.loc.begin.is?('?') && node.source.size.between?(2, 3)
17
26
  end
18
27
 
19
- def autocorrect(node)
20
- lambda do |corrector|
21
- string = node.source[1..-1]
28
+ def autocorrect(corrector, node)
29
+ string = node.source[1..-1]
22
30
 
23
- # special character like \n
24
- # or ' which needs to use "" or be escaped.
25
- if string.length == 2 || string == "'"
26
- corrector.replace(node.source_range, %("#{string}"))
27
- elsif string.length == 1 # normal character
28
- corrector.replace(node.source_range, "'#{string}'")
29
- end
31
+ # special character like \n
32
+ # or ' which needs to use "" or be escaped.
33
+ if string.length == 2 || string == "'"
34
+ corrector.replace(node, %("#{string}"))
35
+ elsif string.length == 1 # normal character
36
+ corrector.replace(node, "'#{string}'")
30
37
  end
31
38
  end
32
39
 
@@ -6,39 +6,125 @@ module RuboCop
6
6
  # This cop checks the style of children definitions at classes and
7
7
  # modules. Basically there are two different styles:
8
8
  #
9
- # nested - have each child on its own line
9
+ # @example EnforcedStyle: nested (default)
10
+ # # good
11
+ # # have each child on its own line
10
12
  # class Foo
11
13
  # class Bar
12
14
  # end
13
15
  # end
14
16
  #
15
- # compact - combine definitions as much as possible
17
+ # @example EnforcedStyle: compact
18
+ # # good
19
+ # # combine definitions as much as possible
16
20
  # class Foo::Bar
17
21
  # end
18
22
  #
19
23
  # The compact style is only forced for classes/modules with one child.
20
- class ClassAndModuleChildren < Cop
24
+ class ClassAndModuleChildren < Base
21
25
  include ConfigurableEnforcedStyle
26
+ include RangeHelp
27
+ extend AutoCorrector
22
28
 
23
- NESTED_MSG = 'Use nested module/class definitions instead of ' \
24
- 'compact style.'.freeze
25
- COMPACT_MSG = 'Use compact module/class definition instead of ' \
26
- 'nested style.'.freeze
29
+ NESTED_MSG = 'Use nested module/class definitions instead of compact style.'
30
+ COMPACT_MSG = 'Use compact module/class definition instead of nested style.'
27
31
 
28
32
  def on_class(node)
29
- _name, superclass, body = *node
30
- return if superclass && style != :nested
31
- check_style(node, body)
33
+ return if node.parent_class && style != :nested
34
+
35
+ check_style(node, node.body)
32
36
  end
33
37
 
34
38
  def on_module(node)
35
- _name, body = *node
36
- check_style(node, body)
39
+ check_style(node, node.body)
37
40
  end
38
41
 
39
42
  private
40
43
 
44
+ def nest_or_compact(corrector, node)
45
+ if style == :nested
46
+ nest_definition(corrector, node)
47
+ else
48
+ compact_definition(corrector, node)
49
+ end
50
+ end
51
+
52
+ def nest_definition(corrector, node)
53
+ padding = ((' ' * indent_width) + leading_spaces(node)).to_s
54
+ padding_for_trailing_end = padding.sub(' ' * node.loc.end.column, '')
55
+
56
+ replace_namespace_keyword(corrector, node)
57
+ split_on_double_colon(corrector, node, padding)
58
+ add_trailing_end(corrector, node, padding_for_trailing_end)
59
+ end
60
+
61
+ def replace_namespace_keyword(corrector, node)
62
+ class_definition = node.left_sibling&.each_node(:class)&.find do |class_node|
63
+ class_node.identifier == node.identifier.namespace
64
+ end
65
+ namespace_keyword = class_definition ? 'class' : 'module'
66
+
67
+ corrector.replace(node.loc.keyword, namespace_keyword)
68
+ end
69
+
70
+ def split_on_double_colon(corrector, node, padding)
71
+ children_definition = node.children.first
72
+ range = range_between(children_definition.loc.double_colon.begin_pos,
73
+ children_definition.loc.double_colon.end_pos)
74
+ replacement = "\n#{padding}#{node.loc.keyword.source} "
75
+
76
+ corrector.replace(range, replacement)
77
+ end
78
+
79
+ def add_trailing_end(corrector, node, padding)
80
+ replacement = "#{padding}end\n#{leading_spaces(node)}end"
81
+ corrector.replace(node.loc.end, replacement)
82
+ end
83
+
84
+ def compact_definition(corrector, node)
85
+ compact_node(corrector, node)
86
+ remove_end(corrector, node.body)
87
+ end
88
+
89
+ def compact_node(corrector, node)
90
+ range = range_between(node.loc.keyword.begin_pos, node.body.loc.name.end_pos)
91
+ corrector.replace(range, compact_replacement(node))
92
+ end
93
+
94
+ def compact_replacement(node)
95
+ replacement = "#{node.body.type} #{compact_identifier_name(node)}"
96
+
97
+ body_comments = processed_source.ast_with_comments[node.body]
98
+ unless body_comments.empty?
99
+ replacement = body_comments.map(&:text).push(replacement).join("\n")
100
+ end
101
+ replacement
102
+ end
103
+
104
+ def compact_identifier_name(node)
105
+ "#{node.identifier.const_name}::" \
106
+ "#{node.body.children.first.const_name}"
107
+ end
108
+
109
+ def remove_end(corrector, body)
110
+ range = range_between(
111
+ body.loc.end.begin_pos - leading_spaces(body).size,
112
+ body.loc.end.end_pos + 1
113
+ )
114
+ corrector.remove(range)
115
+ end
116
+
117
+ def leading_spaces(node)
118
+ node.source_range.source_line[/\A\s*/]
119
+ end
120
+
121
+ def indent_width
122
+ @config.for_cop('Layout/IndentationWidth')['Width'] || 2
123
+ end
124
+
41
125
  def check_style(node, body)
126
+ return if node.identifier.children[0]&.cbase_type?
127
+
42
128
  if style == :nested
43
129
  check_nested_style(node)
44
130
  else
@@ -48,20 +134,35 @@ module RuboCop
48
134
 
49
135
  def check_nested_style(node)
50
136
  return unless compact_node_name?(node)
51
- add_offense(node, :name, NESTED_MSG)
137
+
138
+ add_offense(node.loc.name, message: NESTED_MSG) do |corrector|
139
+ autocorrect(corrector, node)
140
+ end
52
141
  end
53
142
 
54
143
  def check_compact_style(node, body)
55
- return unless one_child?(body) && !compact_node_name?(node)
56
- add_offense(node, :name, COMPACT_MSG)
144
+ parent = node.parent
145
+ return if parent&.class_type? || parent&.module_type?
146
+
147
+ return unless needs_compacting?(body)
148
+
149
+ add_offense(node.loc.name, message: COMPACT_MSG) do |corrector|
150
+ autocorrect(corrector, node)
151
+ end
152
+ end
153
+
154
+ def autocorrect(corrector, node)
155
+ return if node.class_type? && node.parent_class && style != :nested
156
+
157
+ nest_or_compact(corrector, node)
57
158
  end
58
159
 
59
- def one_child?(body)
160
+ def needs_compacting?(body)
60
161
  body && %i[module class].include?(body.type)
61
162
  end
62
163
 
63
164
  def compact_node_name?(node)
64
- node.loc.name.source =~ /::/
165
+ /::/.match?(node.identifier.source)
65
166
  end
66
167
  end
67
168
  end