rubocop 0.76.0 → 1.50.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (867) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +72 -39
  4. data/assets/output.html.erb +1 -1
  5. data/config/default.yml +2044 -451
  6. data/config/obsoletion.yml +233 -0
  7. data/exe/rubocop +15 -9
  8. data/lib/rubocop/arguments_env.rb +17 -0
  9. data/lib/rubocop/arguments_file.rb +17 -0
  10. data/lib/rubocop/ast_aliases.rb +8 -0
  11. data/lib/rubocop/cache_config.rb +29 -0
  12. data/lib/rubocop/cached_data.rb +4 -4
  13. data/lib/rubocop/cli/command/auto_generate_config.rb +154 -0
  14. data/lib/rubocop/cli/command/base.rb +35 -0
  15. data/lib/rubocop/cli/command/execute_runner.rb +105 -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/show_docs_url.rb +48 -0
  19. data/lib/rubocop/cli/command/suggest_extensions.rb +126 -0
  20. data/lib/rubocop/cli/command/version.rb +18 -0
  21. data/lib/rubocop/cli/command.rb +22 -0
  22. data/lib/rubocop/cli/environment.rb +22 -0
  23. data/lib/rubocop/cli.rb +87 -233
  24. data/lib/rubocop/comment_config.rb +109 -94
  25. data/lib/rubocop/config.rb +119 -44
  26. data/lib/rubocop/config_finder.rb +68 -0
  27. data/lib/rubocop/config_loader.rb +126 -140
  28. data/lib/rubocop/config_loader_resolver.rb +124 -39
  29. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  30. data/lib/rubocop/config_obsoletion/changed_parameter.rb +26 -0
  31. data/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
  32. data/lib/rubocop/config_obsoletion/extracted_cop.rb +46 -0
  33. data/lib/rubocop/config_obsoletion/parameter_rule.rb +48 -0
  34. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  35. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  36. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  37. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  38. data/lib/rubocop/config_obsoletion.rb +72 -186
  39. data/lib/rubocop/config_regeneration.rb +33 -0
  40. data/lib/rubocop/config_store.rb +31 -7
  41. data/lib/rubocop/config_validator.rb +135 -111
  42. data/lib/rubocop/cop/autocorrect_logic.rb +61 -37
  43. data/lib/rubocop/cop/badge.rb +27 -32
  44. data/lib/rubocop/cop/base.rb +482 -0
  45. data/lib/rubocop/cop/bundler/duplicated_gem.rb +34 -14
  46. data/lib/rubocop/cop/bundler/gem_comment.rb +121 -14
  47. data/lib/rubocop/cop/bundler/gem_filename.rb +103 -0
  48. data/lib/rubocop/cop/bundler/gem_version.rb +133 -0
  49. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +45 -28
  50. data/lib/rubocop/cop/bundler/ordered_gems.rb +7 -18
  51. data/lib/rubocop/cop/commissioner.rb +112 -75
  52. data/lib/rubocop/cop/cop.rb +98 -207
  53. data/lib/rubocop/cop/corrector.rb +85 -119
  54. data/lib/rubocop/cop/correctors/alignment_corrector.rb +16 -26
  55. data/lib/rubocop/cop/correctors/condition_corrector.rb +4 -7
  56. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +7 -9
  57. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +10 -11
  58. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +8 -7
  59. data/lib/rubocop/cop/correctors/if_then_corrector.rb +55 -0
  60. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +7 -7
  61. data/lib/rubocop/cop/correctors/line_break_corrector.rb +16 -13
  62. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +56 -11
  63. data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +10 -16
  64. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +64 -9
  65. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +13 -24
  66. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +9 -11
  67. data/lib/rubocop/cop/correctors/require_library_corrector.rb +23 -0
  68. data/lib/rubocop/cop/correctors/space_corrector.rb +3 -6
  69. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +7 -9
  70. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +16 -19
  71. data/lib/rubocop/cop/documentation.rb +39 -0
  72. data/lib/rubocop/cop/exclude_limit.rb +26 -0
  73. data/lib/rubocop/cop/force.rb +2 -1
  74. data/lib/rubocop/cop/gemspec/dependency_version.rb +154 -0
  75. data/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +92 -0
  76. data/lib/rubocop/cop/gemspec/development_dependencies.rb +107 -0
  77. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +11 -26
  78. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +8 -21
  79. data/lib/rubocop/cop/gemspec/require_mfa.rb +145 -0
  80. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +69 -27
  81. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +7 -12
  82. data/lib/rubocop/cop/generator/configuration_injector.rb +5 -6
  83. data/lib/rubocop/cop/generator/require_file_injector.rb +4 -7
  84. data/lib/rubocop/cop/generator.rb +38 -44
  85. data/lib/rubocop/cop/ignored_node.rb +1 -3
  86. data/lib/rubocop/cop/internal_affairs/cop_description.rb +98 -0
  87. data/lib/rubocop/cop/internal_affairs/create_empty_file.rb +37 -0
  88. data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +68 -0
  89. data/lib/rubocop/cop/internal_affairs/example_description.rb +92 -0
  90. data/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
  91. data/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +34 -0
  92. data/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +46 -0
  93. data/lib/rubocop/cop/internal_affairs/location_expression.rb +37 -0
  94. data/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +60 -0
  95. data/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +80 -0
  96. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +50 -0
  97. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +4 -4
  98. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +147 -0
  99. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +11 -14
  100. data/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
  101. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +12 -10
  102. data/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +42 -0
  103. data/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +46 -0
  104. data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +62 -0
  105. data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +73 -0
  106. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +13 -8
  107. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +12 -9
  108. data/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +47 -0
  109. data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +66 -0
  110. data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +62 -0
  111. data/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +148 -0
  112. data/lib/rubocop/cop/internal_affairs/undefined_config.rb +73 -0
  113. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +6 -6
  114. data/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +60 -0
  115. data/lib/rubocop/cop/internal_affairs.rb +24 -1
  116. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +12 -10
  117. data/lib/rubocop/cop/layout/argument_alignment.rb +158 -0
  118. data/lib/rubocop/cop/layout/array_alignment.rb +84 -0
  119. data/lib/rubocop/cop/layout/{indent_assignment.rb → assignment_indentation.rb} +10 -9
  120. data/lib/rubocop/cop/layout/begin_end_alignment.rb +74 -0
  121. data/lib/rubocop/cop/layout/block_alignment.rb +56 -60
  122. data/lib/rubocop/cop/layout/block_end_newline.rb +33 -13
  123. data/lib/rubocop/cop/layout/case_indentation.rb +88 -30
  124. data/lib/rubocop/cop/layout/class_structure.rb +90 -91
  125. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +5 -7
  126. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +26 -36
  127. data/lib/rubocop/cop/layout/comment_indentation.rb +56 -29
  128. data/lib/rubocop/cop/layout/condition_position.rb +17 -9
  129. data/lib/rubocop/cop/layout/def_end_alignment.rb +10 -11
  130. data/lib/rubocop/cop/layout/dot_position.rb +65 -27
  131. data/lib/rubocop/cop/layout/else_alignment.rb +29 -7
  132. data/lib/rubocop/cop/layout/empty_comment.rb +30 -30
  133. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +61 -37
  134. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +13 -13
  135. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  136. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +161 -39
  137. data/lib/rubocop/cop/layout/empty_lines.rb +10 -13
  138. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +34 -38
  139. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +14 -10
  140. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +139 -0
  141. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +3 -6
  142. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +8 -9
  143. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +12 -15
  144. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +16 -19
  145. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +3 -6
  146. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +12 -15
  147. data/lib/rubocop/cop/layout/end_alignment.rb +34 -25
  148. data/lib/rubocop/cop/layout/end_of_line.rb +13 -13
  149. data/lib/rubocop/cop/layout/extra_spacing.rb +38 -48
  150. data/lib/rubocop/cop/layout/{indent_first_argument.rb → first_argument_indentation.rb} +80 -42
  151. data/lib/rubocop/cop/layout/{indent_first_array_element.rb → first_array_element_indentation.rb} +41 -28
  152. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +43 -11
  153. data/lib/rubocop/cop/layout/{indent_first_hash_element.rb → first_hash_element_indentation.rb} +86 -31
  154. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +51 -8
  155. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +66 -14
  156. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +54 -8
  157. data/lib/rubocop/cop/layout/{indent_first_parameter.rb → first_parameter_indentation.rb} +13 -12
  158. data/lib/rubocop/cop/layout/{align_hash.rb → hash_alignment.rb} +86 -52
  159. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +56 -34
  160. data/lib/rubocop/cop/layout/heredoc_indentation.rb +162 -0
  161. data/lib/rubocop/cop/layout/indentation_consistency.rb +10 -7
  162. data/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  163. data/lib/rubocop/cop/layout/indentation_width.rb +51 -26
  164. data/lib/rubocop/cop/layout/initial_indentation.rb +9 -13
  165. data/lib/rubocop/cop/layout/leading_comment_space.rb +48 -15
  166. data/lib/rubocop/cop/layout/{leading_blank_lines.rb → leading_empty_lines.rb} +7 -12
  167. data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +136 -0
  168. data/lib/rubocop/cop/layout/line_continuation_spacing.rb +140 -0
  169. data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +141 -0
  170. data/lib/rubocop/cop/layout/line_length.rb +276 -0
  171. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +9 -12
  172. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +53 -8
  173. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +41 -19
  174. data/lib/rubocop/cop/layout/multiline_block_layout.rb +55 -40
  175. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +9 -16
  176. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +53 -10
  177. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +65 -15
  178. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +9 -12
  179. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +52 -24
  180. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +9 -12
  181. data/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +101 -0
  182. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +28 -15
  183. data/lib/rubocop/cop/layout/{align_parameters.rb → parameter_alignment.rb} +8 -7
  184. data/lib/rubocop/cop/layout/redundant_line_break.rb +138 -0
  185. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +61 -41
  186. data/lib/rubocop/cop/layout/single_line_block_chain.rb +64 -0
  187. data/lib/rubocop/cop/layout/space_after_colon.rb +11 -9
  188. data/lib/rubocop/cop/layout/space_after_comma.rb +2 -5
  189. data/lib/rubocop/cop/layout/space_after_method_name.rb +7 -10
  190. data/lib/rubocop/cop/layout/space_after_not.rb +11 -12
  191. data/lib/rubocop/cop/layout/space_after_semicolon.rb +2 -5
  192. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +47 -54
  193. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +20 -23
  194. data/lib/rubocop/cop/layout/space_around_keyword.rb +64 -28
  195. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  196. data/lib/rubocop/cop/layout/space_around_operators.rb +110 -34
  197. data/lib/rubocop/cop/layout/space_before_block_braces.rb +55 -20
  198. data/lib/rubocop/cop/layout/space_before_brackets.rb +73 -0
  199. data/lib/rubocop/cop/layout/space_before_comma.rb +3 -5
  200. data/lib/rubocop/cop/layout/space_before_comment.rb +11 -12
  201. data/lib/rubocop/cop/layout/space_before_first_arg.rb +22 -16
  202. data/lib/rubocop/cop/layout/space_before_semicolon.rb +2 -5
  203. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +19 -23
  204. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +54 -61
  205. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +8 -15
  206. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +63 -50
  207. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +52 -51
  208. data/lib/rubocop/cop/layout/space_inside_parens.rb +92 -29
  209. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +38 -9
  210. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +9 -18
  211. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +27 -34
  212. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +18 -18
  213. data/lib/rubocop/cop/layout/{trailing_blank_lines.rb → trailing_empty_lines.rb} +20 -25
  214. data/lib/rubocop/cop/layout/trailing_whitespace.rb +73 -19
  215. data/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
  216. data/lib/rubocop/cop/legacy/corrector.rb +27 -0
  217. data/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
  218. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +44 -11
  219. data/lib/rubocop/cop/lint/ambiguous_operator.rb +64 -12
  220. data/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +111 -0
  221. data/lib/rubocop/cop/lint/ambiguous_range.rb +105 -0
  222. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +44 -7
  223. data/lib/rubocop/cop/lint/assignment_in_condition.rb +20 -8
  224. data/lib/rubocop/cop/lint/big_decimal_new.rb +10 -10
  225. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +68 -0
  226. data/lib/rubocop/cop/lint/boolean_symbol.rb +30 -5
  227. data/lib/rubocop/cop/lint/circular_argument_reference.rb +2 -2
  228. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
  229. data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
  230. data/lib/rubocop/cop/lint/constant_resolution.rb +93 -0
  231. data/lib/rubocop/cop/lint/debugger.rb +60 -26
  232. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +76 -69
  233. data/lib/rubocop/cop/lint/deprecated_constants.rb +88 -0
  234. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +154 -0
  235. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +33 -4
  236. data/lib/rubocop/cop/lint/duplicate_branch.rb +153 -0
  237. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +4 -14
  238. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  239. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +3 -5
  240. data/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
  241. data/lib/rubocop/cop/lint/duplicate_match_pattern.rb +102 -0
  242. data/lib/rubocop/cop/lint/duplicate_methods.rb +64 -35
  243. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +94 -0
  244. data/lib/rubocop/cop/lint/duplicate_require.rb +56 -0
  245. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  246. data/lib/rubocop/cop/lint/each_with_object_argument.rb +6 -4
  247. data/lib/rubocop/cop/lint/else_layout.rb +33 -9
  248. data/lib/rubocop/cop/lint/empty_block.rb +94 -0
  249. data/lib/rubocop/cop/lint/empty_class.rb +95 -0
  250. data/lib/rubocop/cop/lint/empty_conditional_body.rb +177 -0
  251. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -8
  252. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  253. data/lib/rubocop/cop/lint/empty_file.rb +48 -0
  254. data/lib/rubocop/cop/lint/empty_in_pattern.rb +64 -0
  255. data/lib/rubocop/cop/lint/empty_interpolation.rb +5 -8
  256. data/lib/rubocop/cop/lint/empty_when.rb +34 -9
  257. data/lib/rubocop/cop/lint/ensure_return.rb +29 -16
  258. data/lib/rubocop/cop/lint/erb_new_arguments.rb +28 -30
  259. data/lib/rubocop/cop/lint/flip_flop.rb +9 -3
  260. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  261. data/lib/rubocop/cop/lint/float_out_of_range.rb +3 -4
  262. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +57 -15
  263. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +47 -0
  264. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +30 -34
  265. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  266. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +8 -8
  267. data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +79 -0
  268. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +17 -23
  269. data/lib/rubocop/cop/lint/inherit_exception.rb +32 -36
  270. data/lib/rubocop/cop/lint/interpolation_check.rb +28 -9
  271. data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +51 -0
  272. data/lib/rubocop/cop/lint/literal_as_condition.rb +43 -17
  273. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +93 -18
  274. data/lib/rubocop/cop/lint/loop.rb +32 -9
  275. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +51 -24
  276. data/lib/rubocop/cop/lint/missing_super.rb +130 -0
  277. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  278. data/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  279. data/lib/rubocop/cop/lint/nested_method_definition.rb +71 -31
  280. data/lib/rubocop/cop/lint/nested_percent_literal.rb +19 -7
  281. data/lib/rubocop/cop/lint/next_without_accumulator.rb +26 -6
  282. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  283. data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +162 -0
  284. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +185 -0
  285. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +13 -10
  286. data/lib/rubocop/cop/lint/number_conversion.rb +137 -27
  287. data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +47 -0
  288. data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +42 -0
  289. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +16 -20
  290. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +128 -0
  291. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +42 -14
  292. data/lib/rubocop/cop/lint/percent_string_array.rb +19 -14
  293. data/lib/rubocop/cop/lint/percent_symbol_array.rb +14 -15
  294. data/lib/rubocop/cop/lint/raise_exception.rb +91 -0
  295. data/lib/rubocop/cop/lint/rand_one.rb +6 -5
  296. data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +191 -124
  297. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +62 -43
  298. data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +62 -0
  299. data/lib/rubocop/cop/lint/redundant_require_statement.rb +55 -15
  300. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +91 -0
  301. data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +74 -37
  302. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +72 -0
  303. data/lib/rubocop/cop/lint/redundant_with_index.rb +27 -29
  304. data/lib/rubocop/cop/lint/redundant_with_object.rb +26 -30
  305. data/lib/rubocop/cop/lint/refinement_import_methods.rb +52 -0
  306. data/lib/rubocop/cop/lint/regexp_as_condition.rb +13 -5
  307. data/lib/rubocop/cop/lint/require_parentheses.rb +8 -8
  308. data/lib/rubocop/cop/lint/require_range_parentheses.rb +57 -0
  309. data/lib/rubocop/cop/lint/require_relative_self_path.rb +50 -0
  310. data/lib/rubocop/cop/lint/rescue_exception.rb +3 -4
  311. data/lib/rubocop/cop/lint/rescue_type.rb +12 -18
  312. data/lib/rubocop/cop/lint/return_in_void_context.rb +7 -22
  313. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +48 -15
  314. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +16 -18
  315. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +13 -5
  316. data/lib/rubocop/cop/lint/script_permission.rb +11 -8
  317. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  318. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +14 -21
  319. data/lib/rubocop/cop/lint/shadowed_argument.rb +10 -16
  320. data/lib/rubocop/cop/lint/shadowed_exception.rb +35 -42
  321. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +56 -7
  322. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  323. data/lib/rubocop/cop/lint/{handle_exceptions.rb → suppressed_exception.rb} +55 -18
  324. data/lib/rubocop/cop/lint/symbol_conversion.rb +179 -0
  325. data/lib/rubocop/cop/lint/syntax.rb +14 -30
  326. data/lib/rubocop/cop/lint/to_enum_arguments.rb +99 -0
  327. data/lib/rubocop/cop/lint/to_json.rb +22 -14
  328. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  329. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  330. data/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
  331. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +6 -8
  332. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +90 -0
  333. data/lib/rubocop/cop/lint/unified_integer.rb +7 -8
  334. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  335. data/lib/rubocop/cop/lint/unreachable_code.rb +6 -8
  336. data/lib/rubocop/cop/lint/unreachable_loop.rb +202 -0
  337. data/lib/rubocop/cop/lint/unused_block_argument.rb +19 -12
  338. data/lib/rubocop/cop/lint/unused_method_argument.rb +48 -13
  339. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +6 -3
  340. data/lib/rubocop/cop/lint/uri_regexp.rb +13 -48
  341. data/lib/rubocop/cop/lint/useless_access_modifier.rb +107 -52
  342. data/lib/rubocop/cop/lint/useless_assignment.rb +11 -15
  343. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +8 -13
  344. data/lib/rubocop/cop/lint/useless_method_definition.rb +77 -0
  345. data/lib/rubocop/cop/lint/useless_rescue.rb +89 -0
  346. data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +127 -0
  347. data/lib/rubocop/cop/lint/useless_setter_call.rb +20 -11
  348. data/lib/rubocop/cop/lint/useless_times.rb +114 -0
  349. data/lib/rubocop/cop/lint/void.rb +36 -32
  350. data/lib/rubocop/cop/message_annotator.rb +5 -4
  351. data/lib/rubocop/cop/metrics/abc_size.rb +35 -3
  352. data/lib/rubocop/cop/metrics/block_length.rb +46 -10
  353. data/lib/rubocop/cop/metrics/block_nesting.rb +7 -12
  354. data/lib/rubocop/cop/metrics/class_length.rb +47 -12
  355. data/lib/rubocop/cop/metrics/collection_literal_length.rb +76 -0
  356. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +30 -7
  357. data/lib/rubocop/cop/metrics/method_length.rb +42 -7
  358. data/lib/rubocop/cop/metrics/module_length.rb +35 -10
  359. data/lib/rubocop/cop/metrics/parameter_lists.rb +106 -13
  360. data/lib/rubocop/cop/metrics/perceived_complexity.rb +8 -10
  361. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +73 -16
  362. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +182 -0
  363. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  364. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
  365. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  366. data/lib/rubocop/cop/migration/department_name.rb +54 -17
  367. data/lib/rubocop/cop/mixin/alignment.rb +19 -12
  368. data/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
  369. data/lib/rubocop/cop/mixin/allowed_methods.rb +42 -0
  370. data/lib/rubocop/cop/mixin/allowed_pattern.rb +56 -0
  371. data/lib/rubocop/cop/mixin/annotation_comment.rb +58 -23
  372. data/lib/rubocop/cop/mixin/array_min_size.rb +2 -4
  373. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  374. data/lib/rubocop/cop/mixin/check_line_breakable.rb +56 -19
  375. data/lib/rubocop/cop/mixin/code_length.rb +30 -9
  376. data/lib/rubocop/cop/mixin/comments_help.rb +82 -0
  377. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +28 -14
  378. data/lib/rubocop/cop/mixin/configurable_formatting.rb +4 -11
  379. data/lib/rubocop/cop/mixin/configurable_max.rb +1 -0
  380. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  381. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  382. data/lib/rubocop/cop/mixin/def_node.rb +4 -11
  383. data/lib/rubocop/cop/mixin/documentation_comment.rb +9 -9
  384. data/lib/rubocop/cop/mixin/duplication.rb +1 -1
  385. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +14 -14
  386. data/lib/rubocop/cop/mixin/empty_parameter.rb +2 -1
  387. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +17 -4
  388. data/lib/rubocop/cop/mixin/enforce_superclass.rb +22 -8
  389. data/lib/rubocop/cop/mixin/first_element_line_break.rb +14 -10
  390. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +45 -10
  391. data/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
  392. data/lib/rubocop/cop/mixin/gemspec_help.rb +30 -0
  393. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +22 -13
  394. data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +226 -0
  395. data/lib/rubocop/cop/mixin/hash_transform_method.rb +192 -0
  396. data/lib/rubocop/cop/mixin/heredoc.rb +5 -0
  397. data/lib/rubocop/cop/mixin/interpolation.rb +1 -3
  398. data/lib/rubocop/cop/mixin/line_length_help.rb +110 -0
  399. data/lib/rubocop/cop/mixin/match_range.rb +2 -5
  400. data/lib/rubocop/cop/mixin/method_complexity.rb +27 -10
  401. data/lib/rubocop/cop/mixin/method_preference.rb +1 -2
  402. data/lib/rubocop/cop/mixin/min_branches_count.rb +40 -0
  403. data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +39 -16
  404. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +6 -7
  405. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +18 -46
  406. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +15 -15
  407. data/lib/rubocop/cop/mixin/negative_conditional.rb +6 -4
  408. data/lib/rubocop/cop/mixin/nil_methods.rb +4 -6
  409. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +17 -7
  410. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  411. data/lib/rubocop/cop/mixin/percent_array.rb +85 -12
  412. data/lib/rubocop/cop/mixin/percent_literal.rb +0 -6
  413. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +16 -14
  414. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +6 -9
  415. data/lib/rubocop/cop/mixin/range_help.rb +50 -18
  416. data/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
  417. data/lib/rubocop/cop/mixin/require_library.rb +61 -0
  418. data/lib/rubocop/cop/mixin/rescue_node.rb +15 -7
  419. data/lib/rubocop/cop/mixin/safe_assignment.rb +6 -2
  420. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +6 -7
  421. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +7 -7
  422. data/lib/rubocop/cop/mixin/statement_modifier.rb +62 -24
  423. data/lib/rubocop/cop/mixin/string_help.rb +5 -2
  424. data/lib/rubocop/cop/mixin/string_literals_help.rb +3 -5
  425. data/lib/rubocop/cop/mixin/surrounding_space.rb +31 -43
  426. data/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
  427. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  428. data/lib/rubocop/cop/mixin/trailing_body.rb +2 -3
  429. data/lib/rubocop/cop/mixin/trailing_comma.rb +20 -29
  430. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +25 -32
  431. data/lib/rubocop/cop/mixin/unused_argument.rb +5 -9
  432. data/lib/rubocop/cop/mixin/visibility_help.rb +72 -0
  433. data/lib/rubocop/cop/naming/accessor_method_name.rb +22 -4
  434. data/lib/rubocop/cop/naming/ascii_identifiers.rb +30 -12
  435. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +18 -8
  436. data/lib/rubocop/cop/naming/block_forwarding.rb +125 -0
  437. data/lib/rubocop/cop/naming/{uncommunicative_block_param_name.rb → block_parameter_name.rb} +6 -6
  438. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +16 -4
  439. data/lib/rubocop/cop/naming/constant_name.rb +9 -6
  440. data/lib/rubocop/cop/naming/file_name.rb +74 -39
  441. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +13 -7
  442. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +9 -9
  443. data/lib/rubocop/cop/naming/inclusive_language.rb +289 -0
  444. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +137 -28
  445. data/lib/rubocop/cop/naming/method_name.rb +37 -9
  446. data/lib/rubocop/cop/naming/{uncommunicative_method_param_name.rb → method_parameter_name.rb} +5 -5
  447. data/lib/rubocop/cop/naming/predicate_name.rb +45 -19
  448. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +68 -17
  449. data/lib/rubocop/cop/naming/variable_name.rb +13 -2
  450. data/lib/rubocop/cop/naming/variable_number.rb +107 -12
  451. data/lib/rubocop/cop/offense.rb +46 -12
  452. data/lib/rubocop/cop/registry.rb +146 -42
  453. data/lib/rubocop/cop/security/compound_hash.rb +106 -0
  454. data/lib/rubocop/cop/security/eval.rb +5 -3
  455. data/lib/rubocop/cop/security/io_methods.rb +49 -0
  456. data/lib/rubocop/cop/security/json_load.rb +17 -16
  457. data/lib/rubocop/cop/security/marshal_load.rb +5 -5
  458. data/lib/rubocop/cop/security/open.rb +29 -11
  459. data/lib/rubocop/cop/security/yaml_load.rb +22 -10
  460. data/lib/rubocop/cop/severity.rb +4 -14
  461. data/lib/rubocop/cop/style/access_modifier_declarations.rb +126 -13
  462. data/lib/rubocop/cop/style/accessor_grouping.rb +176 -0
  463. data/lib/rubocop/cop/style/alias.rb +56 -47
  464. data/lib/rubocop/cop/style/and_or.rb +42 -30
  465. data/lib/rubocop/cop/style/arguments_forwarding.rb +155 -0
  466. data/lib/rubocop/cop/style/array_coercion.rb +87 -0
  467. data/lib/rubocop/cop/style/array_intersect.rb +111 -0
  468. data/lib/rubocop/cop/style/array_join.rb +9 -9
  469. data/lib/rubocop/cop/style/ascii_comments.rb +8 -12
  470. data/lib/rubocop/cop/style/attr.rb +21 -13
  471. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +10 -13
  472. data/lib/rubocop/cop/style/bare_percent_literals.rb +13 -15
  473. data/lib/rubocop/cop/style/begin_block.rb +2 -2
  474. data/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
  475. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  476. data/lib/rubocop/cop/style/block_comments.rb +16 -20
  477. data/lib/rubocop/cop/style/block_delimiters.rb +169 -29
  478. data/lib/rubocop/cop/style/case_equality.rb +84 -6
  479. data/lib/rubocop/cop/style/case_like_if.rb +280 -0
  480. data/lib/rubocop/cop/style/character_literal.rb +20 -16
  481. data/lib/rubocop/cop/style/class_and_module_children.rb +69 -34
  482. data/lib/rubocop/cop/style/class_check.rb +7 -12
  483. data/lib/rubocop/cop/style/class_equality_comparison.rb +149 -0
  484. data/lib/rubocop/cop/style/class_methods.rb +9 -15
  485. data/lib/rubocop/cop/style/class_methods_definitions.rb +158 -0
  486. data/lib/rubocop/cop/style/class_vars.rb +24 -8
  487. data/lib/rubocop/cop/style/collection_compact.rb +120 -0
  488. data/lib/rubocop/cop/style/collection_methods.rb +34 -21
  489. data/lib/rubocop/cop/style/colon_method_call.rb +8 -10
  490. data/lib/rubocop/cop/style/colon_method_definition.rb +7 -7
  491. data/lib/rubocop/cop/style/combinable_loops.rb +95 -0
  492. data/lib/rubocop/cop/style/command_literal.rb +23 -29
  493. data/lib/rubocop/cop/style/comment_annotation.rb +70 -37
  494. data/lib/rubocop/cop/style/commented_keyword.rb +43 -24
  495. data/lib/rubocop/cop/style/comparable_clamp.rb +125 -0
  496. data/lib/rubocop/cop/style/concat_array_literals.rb +94 -0
  497. data/lib/rubocop/cop/style/conditional_assignment.rb +102 -109
  498. data/lib/rubocop/cop/style/constant_visibility.rb +32 -3
  499. data/lib/rubocop/cop/style/copyright.rb +22 -25
  500. data/lib/rubocop/cop/style/data_inheritance.rb +75 -0
  501. data/lib/rubocop/cop/style/date_time.rb +22 -6
  502. data/lib/rubocop/cop/style/def_with_parentheses.rb +22 -20
  503. data/lib/rubocop/cop/style/dir.rb +15 -13
  504. data/lib/rubocop/cop/style/dir_empty.rb +60 -0
  505. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  506. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  507. data/lib/rubocop/cop/style/documentation.rb +123 -22
  508. data/lib/rubocop/cop/style/documentation_method.rb +12 -5
  509. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +7 -16
  510. data/lib/rubocop/cop/style/double_negation.rb +134 -10
  511. data/lib/rubocop/cop/style/each_for_simple_loop.rb +48 -16
  512. data/lib/rubocop/cop/style/each_with_object.rb +54 -25
  513. data/lib/rubocop/cop/style/empty_block_parameter.rb +11 -12
  514. data/lib/rubocop/cop/style/empty_case_condition.rb +32 -27
  515. data/lib/rubocop/cop/style/empty_else.rb +54 -25
  516. data/lib/rubocop/cop/style/empty_heredoc.rb +73 -0
  517. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +11 -12
  518. data/lib/rubocop/cop/style/empty_literal.rb +48 -33
  519. data/lib/rubocop/cop/style/empty_method.rb +29 -25
  520. data/lib/rubocop/cop/style/encoding.rb +30 -23
  521. data/lib/rubocop/cop/style/end_block.rb +8 -5
  522. data/lib/rubocop/cop/style/endless_method.rb +101 -0
  523. data/lib/rubocop/cop/style/env_home.rb +56 -0
  524. data/lib/rubocop/cop/style/eval_with_location.rb +145 -56
  525. data/lib/rubocop/cop/style/even_odd.rb +11 -13
  526. data/lib/rubocop/cop/style/expand_path_arguments.rb +28 -26
  527. data/lib/rubocop/cop/style/explicit_block_argument.rb +153 -0
  528. data/lib/rubocop/cop/style/exponential_notation.rb +116 -0
  529. data/lib/rubocop/cop/style/fetch_env_var.rb +132 -0
  530. data/lib/rubocop/cop/style/file_empty.rb +71 -0
  531. data/lib/rubocop/cop/style/file_read.rb +112 -0
  532. data/lib/rubocop/cop/style/file_write.rb +136 -0
  533. data/lib/rubocop/cop/style/float_division.rb +69 -12
  534. data/lib/rubocop/cop/style/for.rb +13 -13
  535. data/lib/rubocop/cop/style/format_string.rb +31 -25
  536. data/lib/rubocop/cop/style/format_string_token.rb +138 -31
  537. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +100 -41
  538. data/lib/rubocop/cop/style/global_std_stream.rb +70 -0
  539. data/lib/rubocop/cop/style/global_vars.rb +3 -3
  540. data/lib/rubocop/cop/style/guard_clause.rb +186 -32
  541. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +100 -0
  542. data/lib/rubocop/cop/style/hash_conversion.rb +134 -0
  543. data/lib/rubocop/cop/style/hash_each_methods.rb +144 -0
  544. data/lib/rubocop/cop/style/hash_except.rb +177 -0
  545. data/lib/rubocop/cop/style/hash_like_case.rb +71 -0
  546. data/lib/rubocop/cop/style/hash_syntax.rb +109 -44
  547. data/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
  548. data/lib/rubocop/cop/style/hash_transform_values.rb +93 -0
  549. data/lib/rubocop/cop/style/identical_conditional_branches.rb +106 -11
  550. data/lib/rubocop/cop/style/if_inside_else.rb +65 -2
  551. data/lib/rubocop/cop/style/if_unless_modifier.rb +210 -52
  552. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +11 -3
  553. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +163 -0
  554. data/lib/rubocop/cop/style/if_with_semicolon.rb +51 -3
  555. data/lib/rubocop/cop/style/implicit_runtime_error.rb +6 -4
  556. data/lib/rubocop/cop/style/in_pattern_then.rb +56 -0
  557. data/lib/rubocop/cop/style/infinite_loop.rb +30 -31
  558. data/lib/rubocop/cop/style/inline_comment.rb +5 -5
  559. data/lib/rubocop/cop/style/inverse_methods.rb +60 -57
  560. data/lib/rubocop/cop/style/invertible_unless_condition.rb +114 -0
  561. data/lib/rubocop/cop/style/ip_addresses.rb +8 -9
  562. data/lib/rubocop/cop/style/keyword_parameters_order.rb +75 -0
  563. data/lib/rubocop/cop/style/lambda.rb +12 -18
  564. data/lib/rubocop/cop/style/lambda_call.rb +20 -45
  565. data/lib/rubocop/cop/style/line_end_concatenation.rb +40 -28
  566. data/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
  567. data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +136 -0
  568. data/lib/rubocop/cop/style/map_to_hash.rb +71 -0
  569. data/lib/rubocop/cop/style/map_to_set.rb +64 -0
  570. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +226 -0
  571. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +48 -0
  572. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +87 -227
  573. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +41 -15
  574. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +17 -7
  575. data/lib/rubocop/cop/style/method_def_parentheses.rb +43 -29
  576. data/lib/rubocop/cop/style/min_max.rb +14 -18
  577. data/lib/rubocop/cop/style/min_max_comparison.rb +83 -0
  578. data/lib/rubocop/cop/style/missing_else.rb +54 -47
  579. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +12 -6
  580. data/lib/rubocop/cop/style/mixin_grouping.rb +30 -43
  581. data/lib/rubocop/cop/style/mixin_usage.rb +13 -31
  582. data/lib/rubocop/cop/style/module_function.rb +99 -33
  583. data/lib/rubocop/cop/style/multiline_block_chain.rb +17 -7
  584. data/lib/rubocop/cop/style/multiline_if_modifier.rb +6 -17
  585. data/lib/rubocop/cop/style/multiline_if_then.rb +5 -11
  586. data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +60 -0
  587. data/lib/rubocop/cop/style/multiline_memoization.rb +17 -15
  588. data/lib/rubocop/cop/style/multiline_method_signature.rb +38 -5
  589. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +74 -12
  590. data/lib/rubocop/cop/style/multiline_when_then.rb +26 -17
  591. data/lib/rubocop/cop/style/multiple_comparison.rb +78 -13
  592. data/lib/rubocop/cop/style/mutable_constant.rb +117 -44
  593. data/lib/rubocop/cop/style/negated_if.rb +10 -11
  594. data/lib/rubocop/cop/style/negated_if_else_condition.rb +135 -0
  595. data/lib/rubocop/cop/style/negated_unless.rb +10 -11
  596. data/lib/rubocop/cop/style/negated_while.rb +7 -15
  597. data/lib/rubocop/cop/style/nested_file_dirname.rb +66 -0
  598. data/lib/rubocop/cop/style/nested_modifier.rb +11 -18
  599. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +35 -23
  600. data/lib/rubocop/cop/style/nested_ternary_operator.rb +43 -5
  601. data/lib/rubocop/cop/style/next.rb +25 -36
  602. data/lib/rubocop/cop/style/nil_comparison.rb +20 -12
  603. data/lib/rubocop/cop/style/nil_lambda.rb +70 -0
  604. data/lib/rubocop/cop/style/non_nil_check.rb +57 -35
  605. data/lib/rubocop/cop/style/not.rb +23 -29
  606. data/lib/rubocop/cop/style/numbered_parameters.rb +46 -0
  607. data/lib/rubocop/cop/style/numbered_parameters_limit.rb +58 -0
  608. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +7 -12
  609. data/lib/rubocop/cop/style/numeric_literals.rb +51 -32
  610. data/lib/rubocop/cop/style/numeric_predicate.rb +72 -32
  611. data/lib/rubocop/cop/style/object_then.rb +74 -0
  612. data/lib/rubocop/cop/style/one_line_conditional.rb +53 -31
  613. data/lib/rubocop/cop/style/open_struct_use.rb +69 -0
  614. data/lib/rubocop/cop/style/operator_method_call.rb +67 -0
  615. data/lib/rubocop/cop/style/option_hash.rb +7 -8
  616. data/lib/rubocop/cop/style/optional_arguments.rb +9 -8
  617. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +64 -0
  618. data/lib/rubocop/cop/style/or_assignment.rb +15 -13
  619. data/lib/rubocop/cop/style/parallel_assignment.rb +31 -26
  620. data/lib/rubocop/cop/style/parentheses_around_condition.rb +20 -9
  621. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +24 -33
  622. data/lib/rubocop/cop/style/percent_q_literals.rb +12 -15
  623. data/lib/rubocop/cop/style/perl_backrefs.rb +106 -17
  624. data/lib/rubocop/cop/style/preferred_hash_methods.rb +21 -22
  625. data/lib/rubocop/cop/style/proc.rb +10 -7
  626. data/lib/rubocop/cop/style/quoted_symbols.rb +124 -0
  627. data/lib/rubocop/cop/style/raise_args.rb +49 -39
  628. data/lib/rubocop/cop/style/random_with_offset.rb +31 -36
  629. data/lib/rubocop/cop/style/redundant_argument.rb +98 -0
  630. data/lib/rubocop/cop/style/redundant_assignment.rb +106 -0
  631. data/lib/rubocop/cop/style/redundant_begin.rb +113 -12
  632. data/lib/rubocop/cop/style/redundant_capital_w.rb +9 -14
  633. data/lib/rubocop/cop/style/redundant_condition.rb +184 -26
  634. data/lib/rubocop/cop/style/redundant_conditional.rb +15 -20
  635. data/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
  636. data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +45 -0
  637. data/lib/rubocop/cop/style/redundant_each.rb +116 -0
  638. data/lib/rubocop/cop/style/redundant_exception.rb +23 -18
  639. data/lib/rubocop/cop/style/redundant_fetch_block.rb +119 -0
  640. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +61 -0
  641. data/lib/rubocop/cop/style/redundant_freeze.rb +16 -14
  642. data/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +58 -0
  643. data/lib/rubocop/cop/style/redundant_initialize.rb +156 -0
  644. data/lib/rubocop/cop/style/redundant_interpolation.rb +71 -31
  645. data/lib/rubocop/cop/style/redundant_line_continuation.rb +167 -0
  646. data/lib/rubocop/cop/style/redundant_parentheses.rb +72 -61
  647. data/lib/rubocop/cop/style/redundant_percent_q.rb +17 -21
  648. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +119 -0
  649. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +135 -0
  650. data/lib/rubocop/cop/style/redundant_return.rb +39 -38
  651. data/lib/rubocop/cop/style/redundant_self.rb +60 -28
  652. data/lib/rubocop/cop/style/redundant_self_assignment.rb +118 -0
  653. data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +83 -0
  654. data/lib/rubocop/cop/style/redundant_sort.rb +86 -43
  655. data/lib/rubocop/cop/style/redundant_sort_by.rb +27 -14
  656. data/lib/rubocop/cop/style/redundant_string_escape.rb +183 -0
  657. data/lib/rubocop/cop/style/regexp_literal.rb +26 -32
  658. data/lib/rubocop/cop/style/require_order.rb +133 -0
  659. data/lib/rubocop/cop/style/rescue_modifier.rb +41 -14
  660. data/lib/rubocop/cop/style/rescue_standard_error.rb +36 -34
  661. data/lib/rubocop/cop/style/return_nil.rb +15 -9
  662. data/lib/rubocop/cop/style/safe_navigation.rb +107 -56
  663. data/lib/rubocop/cop/style/sample.rb +18 -17
  664. data/lib/rubocop/cop/style/select_by_regexp.rb +152 -0
  665. data/lib/rubocop/cop/style/self_assignment.rb +28 -24
  666. data/lib/rubocop/cop/style/semicolon.rb +88 -33
  667. data/lib/rubocop/cop/style/send.rb +6 -8
  668. data/lib/rubocop/cop/style/signal_exception.rb +39 -32
  669. data/lib/rubocop/cop/style/single_argument_dig.rb +65 -0
  670. data/lib/rubocop/cop/style/single_line_block_params.rb +39 -15
  671. data/lib/rubocop/cop/style/single_line_methods.rb +82 -20
  672. data/lib/rubocop/cop/style/slicing_with_range.rb +51 -0
  673. data/lib/rubocop/cop/style/sole_nested_conditional.rb +248 -0
  674. data/lib/rubocop/cop/style/special_global_vars.rb +107 -57
  675. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +18 -25
  676. data/lib/rubocop/cop/style/static_class.rb +128 -0
  677. data/lib/rubocop/cop/style/stderr_puts.rb +10 -14
  678. data/lib/rubocop/cop/style/string_chars.rb +41 -0
  679. data/lib/rubocop/cop/style/string_concatenation.rb +178 -0
  680. data/lib/rubocop/cop/style/string_hash_keys.rb +16 -8
  681. data/lib/rubocop/cop/style/string_literals.rb +20 -20
  682. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +6 -4
  683. data/lib/rubocop/cop/style/string_methods.rb +8 -18
  684. data/lib/rubocop/cop/style/strip.rb +11 -15
  685. data/lib/rubocop/cop/style/struct_inheritance.rb +38 -5
  686. data/lib/rubocop/cop/style/swap_values.rb +112 -0
  687. data/lib/rubocop/cop/style/symbol_array.rb +22 -28
  688. data/lib/rubocop/cop/style/symbol_literal.rb +6 -10
  689. data/lib/rubocop/cop/style/symbol_proc.rb +135 -35
  690. data/lib/rubocop/cop/style/ternary_parentheses.rb +47 -51
  691. data/lib/rubocop/cop/style/top_level_method_definition.rb +85 -0
  692. data/lib/rubocop/cop/style/trailing_body_on_class.rb +5 -7
  693. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +11 -10
  694. data/lib/rubocop/cop/style/trailing_body_on_module.rb +4 -7
  695. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +42 -32
  696. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +44 -6
  697. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +105 -0
  698. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +47 -6
  699. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +10 -39
  700. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +24 -33
  701. data/lib/rubocop/cop/style/trivial_accessors.rb +112 -49
  702. data/lib/rubocop/cop/style/unless_else.rb +10 -10
  703. data/lib/rubocop/cop/style/unless_logical_operators.rb +106 -0
  704. data/lib/rubocop/cop/style/unpack_first.rb +11 -14
  705. data/lib/rubocop/cop/style/variable_interpolation.rb +9 -12
  706. data/lib/rubocop/cop/style/when_then.rb +7 -7
  707. data/lib/rubocop/cop/style/while_until_do.rb +6 -16
  708. data/lib/rubocop/cop/style/while_until_modifier.rb +17 -25
  709. data/lib/rubocop/cop/style/word_array.rb +79 -26
  710. data/lib/rubocop/cop/style/yoda_condition.rb +63 -25
  711. data/lib/rubocop/cop/style/yoda_expression.rb +90 -0
  712. data/lib/rubocop/cop/style/zero_length_predicate.rb +64 -35
  713. data/lib/rubocop/cop/team.rb +156 -81
  714. data/lib/rubocop/cop/util.rb +106 -30
  715. data/lib/rubocop/cop/utils/format_string.rb +22 -9
  716. data/lib/rubocop/cop/variable_force/assignment.rb +3 -3
  717. data/lib/rubocop/cop/variable_force/branch.rb +19 -10
  718. data/lib/rubocop/cop/variable_force/reference.rb +1 -3
  719. data/lib/rubocop/cop/variable_force/scope.rb +9 -12
  720. data/lib/rubocop/cop/variable_force/variable.rb +14 -15
  721. data/lib/rubocop/cop/variable_force/variable_table.rb +5 -3
  722. data/lib/rubocop/cop/variable_force.rb +29 -57
  723. data/lib/rubocop/cops_documentation_generator.rb +329 -0
  724. data/lib/rubocop/core_ext/string.rb +2 -2
  725. data/lib/rubocop/directive_comment.rb +144 -0
  726. data/lib/rubocop/error.rb +1 -0
  727. data/lib/rubocop/ext/comment.rb +18 -0
  728. data/lib/rubocop/ext/processed_source.rb +20 -0
  729. data/lib/rubocop/ext/range.rb +15 -0
  730. data/lib/rubocop/ext/regexp_node.rb +87 -0
  731. data/lib/rubocop/ext/regexp_parser.rb +92 -0
  732. data/lib/rubocop/feature_loader.rb +94 -0
  733. data/lib/rubocop/file_finder.rb +12 -13
  734. data/lib/rubocop/file_patterns.rb +43 -0
  735. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +2 -1
  736. data/lib/rubocop/formatter/base_formatter.rb +0 -4
  737. data/lib/rubocop/formatter/clang_style_formatter.rb +5 -5
  738. data/lib/rubocop/formatter/disabled_config_formatter.rb +82 -39
  739. data/lib/rubocop/formatter/emacs_style_formatter.rb +2 -0
  740. data/lib/rubocop/formatter/formatter_set.rb +24 -22
  741. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +57 -0
  742. data/lib/rubocop/formatter/html_formatter.rb +17 -26
  743. data/lib/rubocop/formatter/json_formatter.rb +11 -11
  744. data/lib/rubocop/formatter/junit_formatter.rb +96 -0
  745. data/lib/rubocop/formatter/markdown_formatter.rb +78 -0
  746. data/lib/rubocop/formatter/offense_count_formatter.rb +17 -8
  747. data/lib/rubocop/formatter/pacman_formatter.rb +1 -1
  748. data/lib/rubocop/formatter/progress_formatter.rb +3 -4
  749. data/lib/rubocop/formatter/quiet_formatter.rb +1 -1
  750. data/lib/rubocop/formatter/simple_text_formatter.rb +42 -8
  751. data/lib/rubocop/formatter/tap_formatter.rb +7 -5
  752. data/lib/rubocop/formatter/worst_offenders_formatter.rb +8 -6
  753. data/lib/rubocop/formatter.rb +34 -0
  754. data/lib/rubocop/lockfile.rb +40 -0
  755. data/lib/rubocop/magic_comment.rb +101 -17
  756. data/lib/rubocop/name_similarity.rb +18 -10
  757. data/lib/rubocop/options.rb +360 -189
  758. data/lib/rubocop/path_util.rb +68 -42
  759. data/lib/rubocop/platform.rb +1 -1
  760. data/lib/rubocop/rake_task.rb +43 -16
  761. data/lib/rubocop/remote_config.rb +17 -15
  762. data/lib/rubocop/result_cache.rb +91 -45
  763. data/lib/rubocop/rspec/cop_helper.rb +36 -37
  764. data/lib/rubocop/rspec/expect_offense.rb +137 -42
  765. data/lib/rubocop/rspec/parallel_formatter.rb +90 -0
  766. data/lib/rubocop/rspec/shared_contexts.rb +122 -34
  767. data/lib/rubocop/rspec/support.rb +17 -1
  768. data/lib/rubocop/runner.rb +223 -90
  769. data/lib/rubocop/server/cache.rb +155 -0
  770. data/lib/rubocop/server/cli.rb +147 -0
  771. data/lib/rubocop/server/client_command/base.rb +44 -0
  772. data/lib/rubocop/server/client_command/exec.rb +64 -0
  773. data/lib/rubocop/server/client_command/restart.rb +25 -0
  774. data/lib/rubocop/server/client_command/start.rb +48 -0
  775. data/lib/rubocop/server/client_command/status.rb +28 -0
  776. data/lib/rubocop/server/client_command/stop.rb +31 -0
  777. data/lib/rubocop/server/client_command.rb +26 -0
  778. data/lib/rubocop/server/core.rb +111 -0
  779. data/lib/rubocop/server/errors.rb +23 -0
  780. data/lib/rubocop/server/helper.rb +34 -0
  781. data/lib/rubocop/server/server_command/base.rb +50 -0
  782. data/lib/rubocop/server/server_command/exec.rb +34 -0
  783. data/lib/rubocop/server/server_command/stop.rb +24 -0
  784. data/lib/rubocop/server/server_command.rb +21 -0
  785. data/lib/rubocop/server/socket_reader.rb +69 -0
  786. data/lib/rubocop/server.rb +53 -0
  787. data/lib/rubocop/string_interpreter.rb +7 -4
  788. data/lib/rubocop/target_finder.rb +58 -48
  789. data/lib/rubocop/target_ruby.rb +271 -0
  790. data/lib/rubocop/util.rb +16 -0
  791. data/lib/rubocop/version.rb +84 -7
  792. data/lib/rubocop/yaml_duplication_checker.rb +2 -1
  793. data/lib/rubocop.rb +261 -118
  794. metadata +362 -117
  795. data/bin/console +0 -10
  796. data/bin/setup +0 -7
  797. data/lib/rubocop/ast/builder.rb +0 -82
  798. data/lib/rubocop/ast/node/alias_node.rb +0 -24
  799. data/lib/rubocop/ast/node/and_node.rb +0 -29
  800. data/lib/rubocop/ast/node/args_node.rb +0 -29
  801. data/lib/rubocop/ast/node/array_node.rb +0 -57
  802. data/lib/rubocop/ast/node/block_node.rb +0 -115
  803. data/lib/rubocop/ast/node/break_node.rb +0 -17
  804. data/lib/rubocop/ast/node/case_node.rb +0 -56
  805. data/lib/rubocop/ast/node/class_node.rb +0 -31
  806. data/lib/rubocop/ast/node/def_node.rb +0 -71
  807. data/lib/rubocop/ast/node/defined_node.rb +0 -17
  808. data/lib/rubocop/ast/node/ensure_node.rb +0 -17
  809. data/lib/rubocop/ast/node/float_node.rb +0 -12
  810. data/lib/rubocop/ast/node/for_node.rb +0 -53
  811. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  812. data/lib/rubocop/ast/node/if_node.rb +0 -175
  813. data/lib/rubocop/ast/node/int_node.rb +0 -12
  814. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  815. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -16
  816. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -43
  817. data/lib/rubocop/ast/node/mixin/collection_node.rb +0 -15
  818. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  819. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  820. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -261
  821. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -114
  822. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  823. data/lib/rubocop/ast/node/mixin/numeric_node.rb +0 -21
  824. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -61
  825. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  826. data/lib/rubocop/ast/node/module_node.rb +0 -24
  827. data/lib/rubocop/ast/node/or_node.rb +0 -29
  828. data/lib/rubocop/ast/node/pair_node.rb +0 -63
  829. data/lib/rubocop/ast/node/range_node.rb +0 -18
  830. data/lib/rubocop/ast/node/regexp_node.rb +0 -35
  831. data/lib/rubocop/ast/node/resbody_node.rb +0 -24
  832. data/lib/rubocop/ast/node/retry_node.rb +0 -17
  833. data/lib/rubocop/ast/node/return_node.rb +0 -24
  834. data/lib/rubocop/ast/node/self_class_node.rb +0 -24
  835. data/lib/rubocop/ast/node/send_node.rb +0 -13
  836. data/lib/rubocop/ast/node/str_node.rb +0 -16
  837. data/lib/rubocop/ast/node/super_node.rb +0 -21
  838. data/lib/rubocop/ast/node/symbol_node.rb +0 -12
  839. data/lib/rubocop/ast/node/until_node.rb +0 -35
  840. data/lib/rubocop/ast/node/when_node.rb +0 -53
  841. data/lib/rubocop/ast/node/while_node.rb +0 -35
  842. data/lib/rubocop/ast/node/yield_node.rb +0 -21
  843. data/lib/rubocop/ast/node.rb +0 -644
  844. data/lib/rubocop/ast/sexp.rb +0 -16
  845. data/lib/rubocop/ast/traversal.rb +0 -183
  846. data/lib/rubocop/cop/layout/align_arguments.rb +0 -93
  847. data/lib/rubocop/cop/layout/align_array.rb +0 -39
  848. data/lib/rubocop/cop/layout/indent_heredoc.rb +0 -256
  849. data/lib/rubocop/cop/layout/tab.rb +0 -75
  850. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  851. data/lib/rubocop/cop/lint/multiple_compare.rb +0 -48
  852. data/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +0 -59
  853. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  854. data/lib/rubocop/cop/metrics/line_length.rb +0 -318
  855. data/lib/rubocop/cop/mixin/classish_length.rb +0 -37
  856. data/lib/rubocop/cop/mixin/ignored_methods.rb +0 -19
  857. data/lib/rubocop/cop/mixin/ignored_pattern.rb +0 -29
  858. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -37
  859. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -24
  860. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -35
  861. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -209
  862. data/lib/rubocop/cop/style/method_missing_super.rb +0 -34
  863. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  864. data/lib/rubocop/node_pattern.rb +0 -801
  865. data/lib/rubocop/processed_source.rb +0 -216
  866. data/lib/rubocop/string_util.rb +0 -14
  867. data/lib/rubocop/token.rb +0 -114
@@ -3,7 +3,10 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # This cop checks for unwanted parentheses in parameterless method calls.
6
+ # Checks for unwanted parentheses in parameterless method calls.
7
+ #
8
+ # This cop can be customized allowed methods with `AllowedMethods`.
9
+ # By default, there are no methods to allowed.
7
10
  #
8
11
  # @example
9
12
  # # bad
@@ -11,39 +14,58 @@ module RuboCop
11
14
  #
12
15
  # # good
13
16
  # object.some_method
14
- class MethodCallWithoutArgsParentheses < Cop
15
- include IgnoredMethods
17
+ #
18
+ # @example AllowedMethods: [] (default)
19
+ # # bad
20
+ # object.foo()
21
+ #
22
+ # @example AllowedMethods: [foo]
23
+ # # good
24
+ # object.foo()
25
+ #
26
+ class MethodCallWithoutArgsParentheses < Base
27
+ include AllowedMethods
28
+ include AllowedPattern
29
+ extend AutoCorrector
16
30
 
17
- MSG = 'Do not use parentheses for method calls with ' \
18
- 'no arguments.'
31
+ MSG = 'Do not use parentheses for method calls with no arguments.'
19
32
 
20
33
  def on_send(node)
21
- return if ineligible_node?(node)
22
34
  return unless !node.arguments? && node.parenthesized?
23
- return if ignored_method?(node.method_name)
35
+ return if ineligible_node?(node)
36
+ return if default_argument?(node)
37
+ return if allowed_method_name?(node.method_name)
24
38
  return if same_name_assignment?(node)
25
39
 
26
- add_offense(node, location: node.loc.begin.join(node.loc.end))
40
+ register_offense(node)
27
41
  end
28
42
 
29
- def autocorrect(node)
30
- lambda do |corrector|
43
+ private
44
+
45
+ def register_offense(node)
46
+ add_offense(offense_range(node)) do |corrector|
31
47
  corrector.remove(node.loc.begin)
32
48
  corrector.remove(node.loc.end)
33
49
  end
34
50
  end
35
51
 
36
- private
37
-
38
52
  def ineligible_node?(node)
39
53
  node.camel_case_method? || node.implicit_call? || node.prefix_not?
40
54
  end
41
55
 
56
+ def default_argument?(node)
57
+ node.parent&.optarg_type?
58
+ end
59
+
60
+ def allowed_method_name?(name)
61
+ allowed_method?(name) || matches_allowed_pattern?(name)
62
+ end
63
+
42
64
  def same_name_assignment?(node)
65
+ return false if node.receiver
66
+
43
67
  any_assignment?(node) do |asgn_node|
44
- if asgn_node.masgn_type?
45
- next variable_in_mass_assignment?(node.method_name, asgn_node)
46
- end
68
+ next variable_in_mass_assignment?(node.method_name, asgn_node) if asgn_node.masgn_type?
47
69
 
48
70
  asgn_node.loc.name.source == node.method_name.to_s
49
71
  end
@@ -71,6 +93,10 @@ module RuboCop
71
93
 
72
94
  var_nodes.any? { |n| n.to_a.first == variable_name }
73
95
  end
96
+
97
+ def offense_range(node)
98
+ node.loc.begin.join(node.loc.end)
99
+ end
74
100
  end
75
101
  end
76
102
  end
@@ -3,16 +3,25 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # This cop checks for methods called on a do...end block. The point of
6
+ # Checks for methods called on a do...end block. The point of
7
7
  # this check is that it's easy to miss the call tacked on to the block
8
8
  # when reading code.
9
9
  #
10
10
  # @example
11
- #
11
+ # # bad
12
12
  # a do
13
13
  # b
14
14
  # end.c
15
- class MethodCalledOnDoEndBlock < Cop
15
+ #
16
+ # # good
17
+ # a { b }.c
18
+ #
19
+ # # good
20
+ # foo = a do
21
+ # b
22
+ # end
23
+ # foo.c
24
+ class MethodCalledOnDoEndBlock < Base
16
25
  include RangeHelp
17
26
 
18
27
  MSG = 'Avoid chaining a method call on a do...end block.'
@@ -26,18 +35,19 @@ module RuboCop
26
35
  ignore_node(node.send_node)
27
36
  end
28
37
 
38
+ alias on_numblock on_block
39
+
29
40
  def on_send(node)
30
41
  return if ignored_node?(node)
31
42
 
32
43
  receiver = node.receiver
33
44
 
34
- return unless receiver&.block_type? &&
45
+ return unless (receiver&.block_type? || receiver&.numblock_type?) &&
35
46
  receiver.loc.end.is?('end')
36
47
 
37
- range = range_between(receiver.loc.end.begin_pos,
38
- node.source_range.end_pos)
48
+ range = range_between(receiver.loc.end.begin_pos, node.source_range.end_pos)
39
49
 
40
- add_offense(nil, location: range)
50
+ add_offense(range)
41
51
  end
42
52
  alias on_csend on_send
43
53
  end
@@ -3,9 +3,19 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # This cop checks for parentheses around the arguments in method
6
+ # Checks for parentheses around the arguments in method
7
7
  # definitions. Both instance and class/singleton methods are checked.
8
8
  #
9
+ # Regardless of style, parentheses are necessary for:
10
+ #
11
+ # 1. Endless methods
12
+ # 2. Argument lists containing a `forward-arg` (`...`)
13
+ # 3. Argument lists containing an anonymous rest arguments forwarding (`*`)
14
+ # 4. Argument lists containing an anonymous keyword rest arguments forwarding (`**`)
15
+ # 5. Argument lists containing an anonymous block forwarding (`&`)
16
+ #
17
+ # Removing the parens would be a syntax error here.
18
+ #
9
19
  # @example EnforcedStyle: require_parentheses (default)
10
20
  # # The `require_parentheses` style requires method definitions
11
21
  # # to always use parentheses
@@ -84,15 +94,17 @@ module RuboCop
84
94
  # last_descriptive_var_name)
85
95
  # do_something
86
96
  # end
87
- class MethodDefParentheses < Cop
97
+ class MethodDefParentheses < Base
88
98
  include ConfigurableEnforcedStyle
89
99
  include RangeHelp
100
+ extend AutoCorrector
90
101
 
91
102
  MSG_PRESENT = 'Use def without parentheses.'
92
- MSG_MISSING = 'Use def with parentheses when there are ' \
93
- 'parameters.'
103
+ MSG_MISSING = 'Use def with parentheses when there are parameters.'
94
104
 
95
105
  def on_def(node)
106
+ return if forced_parentheses?(node)
107
+
96
108
  args = node.arguments
97
109
 
98
110
  if require_parentheses?(args)
@@ -109,17 +121,6 @@ module RuboCop
109
121
  end
110
122
  alias on_defs on_def
111
123
 
112
- def autocorrect(node)
113
- lambda do |corrector|
114
- if node.args_type?
115
- # offense is registered on args node when parentheses are unwanted
116
- correct_arguments(node, corrector)
117
- else
118
- correct_definition(node, corrector)
119
- end
120
- end
121
- end
122
-
123
124
  private
124
125
 
125
126
  def correct_arguments(arg_node, corrector)
@@ -127,20 +128,20 @@ module RuboCop
127
128
  corrector.remove(arg_node.loc.end)
128
129
  end
129
130
 
130
- def correct_definition(def_node, corrector)
131
- arguments_range = def_node.arguments.source_range
132
- args_with_space = range_with_surrounding_space(range: arguments_range,
133
- side: :left)
134
- leading_space = range_between(args_with_space.begin_pos,
135
- arguments_range.begin_pos)
136
- corrector.replace(leading_space, '(')
137
- corrector.insert_after(arguments_range, ')')
131
+ def forced_parentheses?(node)
132
+ # Regardless of style, parentheses are necessary for:
133
+ # 1. Endless methods
134
+ # 2. Argument lists containing a `forward-arg` (`...`)
135
+ # 3. Argument lists containing an anonymous rest arguments forwarding (`*`)
136
+ # 4. Argument lists containing an anonymous keyword rest arguments forwarding (`**`)
137
+ # 5. Argument lists containing an anonymous block forwarding (`&`)
138
+ # Removing the parens would be a syntax error here.
139
+ node.endless? || anonymous_arguments?(node)
138
140
  end
139
141
 
140
142
  def require_parentheses?(args)
141
143
  style == :require_parentheses ||
142
- (style == :require_no_parentheses_except_multiline &&
143
- args.multiline?)
144
+ (style == :require_no_parentheses_except_multiline && args.multiline?)
144
145
  end
145
146
 
146
147
  def arguments_without_parentheses?(node)
@@ -150,16 +151,29 @@ module RuboCop
150
151
  def missing_parentheses(node)
151
152
  location = node.arguments.source_range
152
153
 
153
- add_offense(node, location: location, message: MSG_MISSING) do
154
- unexpected_style_detected(:require_no_parentheses)
154
+ add_offense(location, message: MSG_MISSING) do |corrector|
155
+ add_parentheses(node.arguments, corrector)
156
+
157
+ unexpected_style_detected 'require_no_parentheses'
155
158
  end
156
159
  end
157
160
 
158
161
  def unwanted_parentheses(args)
159
- add_offense(args, message: MSG_PRESENT) do
160
- unexpected_style_detected(:require_parentheses)
162
+ add_offense(args, message: MSG_PRESENT) do |corrector|
163
+ # offense is registered on args node when parentheses are unwanted
164
+ correct_arguments(args, corrector)
165
+ unexpected_style_detected 'require_parentheses'
161
166
  end
162
167
  end
168
+
169
+ def anonymous_arguments?(node)
170
+ return true if node.arguments.any? do |arg|
171
+ arg.forward_arg_type? || arg.restarg_type? || arg.kwrestarg_type?
172
+ end
173
+ return false unless (last_argument = node.arguments.last)
174
+
175
+ last_argument.blockarg_type? && last_argument.name.nil?
176
+ end
163
177
  end
164
178
  end
165
179
  end
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # This cop checks for potential uses of `Enumerable#minmax`.
6
+ # Checks for potential uses of `Enumerable#minmax`.
7
7
  #
8
8
  # @example
9
9
  #
@@ -14,37 +14,33 @@ module RuboCop
14
14
  # # good
15
15
  # bar = foo.minmax
16
16
  # return foo.minmax
17
- class MinMax < Cop
17
+ class MinMax < Base
18
+ extend AutoCorrector
19
+
18
20
  MSG = 'Use `%<receiver>s.minmax` instead of `%<offender>s`.'
19
21
 
20
22
  def on_array(node)
21
23
  min_max_candidate(node) do |receiver|
22
24
  offender = offending_range(node)
23
25
 
24
- add_offense(node, location: offender,
25
- message: message(offender, receiver))
26
- end
27
- end
28
- alias on_return on_array
29
-
30
- def autocorrect(node)
31
- receiver = node.children.first.receiver
26
+ add_offense(offender, message: message(offender, receiver)) do |corrector|
27
+ receiver = node.children.first.receiver
32
28
 
33
- lambda do |corrector|
34
- corrector.replace(offending_range(node),
35
- "#{receiver.source}.minmax")
29
+ corrector.replace(offending_range(node), "#{receiver.source}.minmax")
30
+ end
36
31
  end
37
32
  end
33
+ alias on_return on_array
38
34
 
39
35
  private
40
36
 
37
+ # @!method min_max_candidate(node)
41
38
  def_node_matcher :min_max_candidate, <<~PATTERN
42
39
  ({array return} (send [$_receiver !nil?] :min) (send [$_receiver !nil?] :max))
43
40
  PATTERN
44
41
 
45
42
  def message(offender, receiver)
46
- format(MSG, offender: offender.source,
47
- receiver: receiver.source)
43
+ format(MSG, offender: offender.source, receiver: receiver.source)
48
44
  end
49
45
 
50
46
  def offending_range(node)
@@ -52,13 +48,13 @@ module RuboCop
52
48
  when :return
53
49
  argument_range(node)
54
50
  else
55
- node.loc.expression
51
+ node.source_range
56
52
  end
57
53
  end
58
54
 
59
55
  def argument_range(node)
60
- first_argument_range = node.children.first.loc.expression
61
- last_argument_range = node.children.last.loc.expression
56
+ first_argument_range = node.children.first.source_range
57
+ last_argument_range = node.children.last.source_range
62
58
 
63
59
  first_argument_range.join(last_argument_range)
64
60
  end
@@ -0,0 +1,83 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # Enforces the use of `max` or `min` instead of comparison for greater or less.
7
+ #
8
+ # NOTE: It can be used if you want to present limit or threshold in Ruby 2.7+.
9
+ # That it is slow though. So autocorrection will apply generic `max` or `min`:
10
+ #
11
+ # [source,ruby]
12
+ # ----
13
+ # a.clamp(b..) # Same as `[a, b].max`
14
+ # a.clamp(..b) # Same as `[a, b].min`
15
+ # ----
16
+ #
17
+ # @safety
18
+ # This cop is unsafe because even if a value has `<` or `>` method,
19
+ # it is not necessarily `Comparable`.
20
+ #
21
+ # @example
22
+ #
23
+ # # bad
24
+ # a > b ? a : b
25
+ # a >= b ? a : b
26
+ #
27
+ # # good
28
+ # [a, b].max
29
+ #
30
+ # # bad
31
+ # a < b ? a : b
32
+ # a <= b ? a : b
33
+ #
34
+ # # good
35
+ # [a, b].min
36
+ #
37
+ class MinMaxComparison < Base
38
+ extend AutoCorrector
39
+ include RangeHelp
40
+
41
+ MSG = 'Use `%<prefer>s` instead.'
42
+ GRATER_OPERATORS = %i[> >=].freeze
43
+ LESS_OPERATORS = %i[< <=].freeze
44
+ COMPARISON_OPERATORS = GRATER_OPERATORS + LESS_OPERATORS
45
+
46
+ def on_if(node)
47
+ lhs, operator, rhs = *node.condition
48
+ return unless COMPARISON_OPERATORS.include?(operator)
49
+
50
+ if_branch = node.if_branch
51
+ else_branch = node.else_branch
52
+ preferred_method = preferred_method(operator, lhs, rhs, if_branch, else_branch)
53
+ return unless preferred_method
54
+
55
+ replacement = "[#{lhs.source}, #{rhs.source}].#{preferred_method}"
56
+
57
+ add_offense(node, message: format(MSG, prefer: replacement)) do |corrector|
58
+ autocorrect(corrector, node, replacement)
59
+ end
60
+ end
61
+
62
+ private
63
+
64
+ def preferred_method(operator, lhs, rhs, if_branch, else_branch)
65
+ if lhs == if_branch && rhs == else_branch
66
+ GRATER_OPERATORS.include?(operator) ? 'max' : 'min'
67
+ elsif lhs == else_branch && rhs == if_branch
68
+ LESS_OPERATORS.include?(operator) ? 'max' : 'min'
69
+ end
70
+ end
71
+
72
+ def autocorrect(corrector, node, replacement)
73
+ if node.elsif?
74
+ corrector.remove(range_between(node.parent.loc.else.begin_pos, node.loc.else.begin_pos))
75
+ corrector.replace(node.else_branch, replacement)
76
+ else
77
+ corrector.replace(node, replacement)
78
+ end
79
+ end
80
+ end
81
+ end
82
+ end
83
+ end
@@ -5,27 +5,30 @@ module RuboCop
5
5
  module Style
6
6
  # Checks for `if` expressions that do not have an `else` branch.
7
7
  #
8
+ # NOTE: Pattern matching is allowed to have no `else` branch because unlike `if` and `case`,
9
+ # it raises `NoMatchingPatternError` if the pattern doesn't match and without having `else`.
10
+ #
8
11
  # Supported styles are: if, case, both.
9
12
  #
10
- # @example EnforcedStyle: if
11
- # # warn when an `if` expression is missing an `else` branch.
13
+ # @example EnforcedStyle: both (default)
14
+ # # warn when an `if` or `case` expression is missing an `else` branch.
12
15
  #
13
16
  # # bad
14
17
  # if condition
15
18
  # statement
16
19
  # end
17
20
  #
18
- # # good
19
- # if condition
21
+ # # bad
22
+ # case var
23
+ # when condition
20
24
  # statement
21
- # else
22
- # # the content of `else` branch will be determined by Style/EmptyElse
23
25
  # end
24
26
  #
25
27
  # # good
26
- # case var
27
- # when condition
28
+ # if condition
28
29
  # statement
30
+ # else
31
+ # # the content of `else` branch will be determined by Style/EmptyElse
29
32
  # end
30
33
  #
31
34
  # # good
@@ -36,72 +39,71 @@ module RuboCop
36
39
  # # the content of `else` branch will be determined by Style/EmptyElse
37
40
  # end
38
41
  #
39
- # @example EnforcedStyle: case
40
- # # warn when a `case` expression is missing an `else` branch.
42
+ # @example EnforcedStyle: if
43
+ # # warn when an `if` expression is missing an `else` branch.
41
44
  #
42
45
  # # bad
43
- # case var
44
- # when condition
46
+ # if condition
45
47
  # statement
46
48
  # end
47
49
  #
48
50
  # # good
49
- # case var
50
- # when condition
51
+ # if condition
51
52
  # statement
52
53
  # else
53
54
  # # the content of `else` branch will be determined by Style/EmptyElse
54
55
  # end
55
56
  #
56
57
  # # good
57
- # if condition
58
+ # case var
59
+ # when condition
58
60
  # statement
59
61
  # end
60
62
  #
61
63
  # # good
62
- # if condition
64
+ # case var
65
+ # when condition
63
66
  # statement
64
67
  # else
65
68
  # # the content of `else` branch will be determined by Style/EmptyElse
66
69
  # end
67
70
  #
68
- # @example EnforcedStyle: both (default)
69
- # # warn when an `if` or `case` expression is missing an `else` branch.
71
+ # @example EnforcedStyle: case
72
+ # # warn when a `case` expression is missing an `else` branch.
70
73
  #
71
74
  # # bad
72
- # if condition
75
+ # case var
76
+ # when condition
73
77
  # statement
74
78
  # end
75
79
  #
76
- # # bad
80
+ # # good
77
81
  # case var
78
82
  # when condition
79
83
  # statement
84
+ # else
85
+ # # the content of `else` branch will be determined by Style/EmptyElse
80
86
  # end
81
87
  #
82
88
  # # good
83
89
  # if condition
84
90
  # statement
85
- # else
86
- # # the content of `else` branch will be determined by Style/EmptyElse
87
91
  # end
88
92
  #
89
93
  # # good
90
- # case var
91
- # when condition
94
+ # if condition
92
95
  # statement
93
96
  # else
94
97
  # # the content of `else` branch will be determined by Style/EmptyElse
95
98
  # end
96
- class MissingElse < Cop
99
+ class MissingElse < Base
97
100
  include OnNormalIfUnless
98
101
  include ConfigurableEnforcedStyle
102
+ extend AutoCorrector
99
103
 
100
104
  MSG = '`%<type>s` condition requires an `else`-clause.'
101
- MSG_NIL = '`%<type>s` condition requires an `else`-clause with ' \
102
- '`nil` in it.'
103
- MSG_EMPTY = '`%<type>s` condition requires an empty ' \
104
- '`else`-clause.'
105
+ MSG_NIL = '`%<type>s` condition requires an `else`-clause with `nil` in it.'
106
+ MSG_EMPTY = '`%<type>s` condition requires an empty `else`-clause.'
105
107
 
106
108
  def on_normal_if_unless(node)
107
109
  return if case_style?
@@ -116,33 +118,38 @@ module RuboCop
116
118
  check(node)
117
119
  end
118
120
 
121
+ def on_case_match(node)
122
+ # do nothing.
123
+ end
124
+
119
125
  private
120
126
 
121
127
  def check(node)
122
128
  return if node.else?
123
129
 
124
- if empty_else_cop_enabled?
125
- if empty_else_style == :empty
126
- add_offense(node)
127
- elsif empty_else_style == :nil
128
- add_offense(node)
129
- end
130
+ add_offense(node, message: format(message_template, type: node.type)) do |corrector|
131
+ autocorrect(corrector, node)
130
132
  end
133
+ end
131
134
 
132
- add_offense(node)
135
+ def message_template
136
+ case empty_else_style
137
+ when :empty
138
+ MSG_NIL
139
+ when :nil
140
+ MSG_EMPTY
141
+ else
142
+ MSG
143
+ end
133
144
  end
134
145
 
135
- def message(node)
136
- template = case empty_else_style
137
- when :empty
138
- MSG_NIL
139
- when :nil
140
- MSG_EMPTY
141
- else
142
- MSG
143
- end
144
-
145
- format(template, type: node.type)
146
+ def autocorrect(corrector, node)
147
+ case empty_else_style
148
+ when :empty
149
+ corrector.insert_before(node.loc.end, 'else; nil; ')
150
+ when :nil
151
+ corrector.insert_before(node.loc.end, 'else; ')
152
+ end
146
153
  end
147
154
 
148
155
  def if_style?
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # This cop checks for the presence of `method_missing` without also
6
+ # Checks for the presence of `method_missing` without also
7
7
  # defining `respond_to_missing?`.
8
8
  #
9
9
  # @example
@@ -21,9 +21,8 @@ module RuboCop
21
21
  # # ...
22
22
  # end
23
23
  #
24
- class MissingRespondToMissing < Cop
25
- MSG =
26
- 'When using `method_missing`, define `respond_to_missing?`.'
24
+ class MissingRespondToMissing < Base
25
+ MSG = 'When using `method_missing`, define `respond_to_missing?`.'
27
26
 
28
27
  def on_def(node)
29
28
  return unless node.method?(:method_missing)
@@ -36,9 +35,16 @@ module RuboCop
36
35
  private
37
36
 
38
37
  def implements_respond_to_missing?(node)
39
- node.parent.each_child_node(node.type).any? do |sibling|
40
- sibling.method?(:respond_to_missing?)
38
+ return false unless (grand_parent = node.parent.parent)
39
+
40
+ grand_parent.each_descendant(node.type) do |descendant|
41
+ return true if descendant.method?(:respond_to_missing?)
42
+
43
+ child = descendant.children.first
44
+ return true if child.respond_to?(:method?) && child.method?(:respond_to_missing?)
41
45
  end
46
+
47
+ false
42
48
  end
43
49
  end
44
50
  end