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,9 +3,9 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks for *rescue* blocks with no body.
6
+ # Checks for `rescue` blocks with no body.
7
7
  #
8
- # @example AllowComments: false (default)
8
+ # @example
9
9
  #
10
10
  # # bad
11
11
  # def some_method
@@ -14,80 +14,117 @@ module RuboCop
14
14
  # end
15
15
  #
16
16
  # # bad
17
- # def some_method
17
+ # begin
18
18
  # do_something
19
19
  # rescue
20
- # # do nothing
21
20
  # end
22
21
  #
23
- # # bad
24
- # begin
22
+ # # good
23
+ # def some_method
25
24
  # do_something
26
25
  # rescue
26
+ # handle_exception
27
27
  # end
28
28
  #
29
- # # bad
29
+ # # good
30
30
  # begin
31
31
  # do_something
32
32
  # rescue
33
- # # do nothing
33
+ # handle_exception
34
34
  # end
35
35
  #
36
+ # @example AllowComments: true (default)
37
+ #
36
38
  # # good
37
39
  # def some_method
38
40
  # do_something
39
41
  # rescue
40
- # handle_exception
42
+ # # do nothing
41
43
  # end
42
44
  #
43
45
  # # good
44
46
  # begin
45
47
  # do_something
46
48
  # rescue
47
- # handle_exception
49
+ # # do nothing
48
50
  # end
49
51
  #
50
- # @example AllowComments: true
52
+ # @example AllowComments: false
51
53
  #
52
54
  # # bad
53
55
  # def some_method
54
56
  # do_something
55
57
  # rescue
58
+ # # do nothing
56
59
  # end
57
60
  #
58
61
  # # bad
59
62
  # begin
60
63
  # do_something
61
64
  # rescue
65
+ # # do nothing
62
66
  # end
63
67
  #
68
+ # @example AllowNil: true (default)
69
+ #
64
70
  # # good
65
71
  # def some_method
66
72
  # do_something
67
73
  # rescue
68
- # # do nothing but comment
74
+ # nil
69
75
  # end
70
76
  #
71
77
  # # good
72
78
  # begin
73
79
  # do_something
74
80
  # rescue
75
- # # do nothing but comment
81
+ # # do nothing
76
82
  # end
77
- class HandleExceptions < Cop
83
+ #
84
+ # # good
85
+ # do_something rescue nil
86
+ #
87
+ # @example AllowNil: false
88
+ #
89
+ # # bad
90
+ # def some_method
91
+ # do_something
92
+ # rescue
93
+ # nil
94
+ # end
95
+ #
96
+ # # bad
97
+ # begin
98
+ # do_something
99
+ # rescue
100
+ # nil
101
+ # end
102
+ #
103
+ # # bad
104
+ # do_something rescue nil
105
+ class SuppressedException < Base
78
106
  MSG = 'Do not suppress exceptions.'
79
107
 
80
108
  def on_resbody(node)
81
- return if node.body
82
- return if cop_config['AllowComments'] && comment_lines?(node)
109
+ return if node.body && !nil_body?(node)
110
+ return if cop_config['AllowComments'] && comment_between_rescue_and_end?(node)
111
+ return if cop_config['AllowNil'] && nil_body?(node)
83
112
 
84
113
  add_offense(node)
85
114
  end
86
115
 
87
116
  private
88
117
 
89
- def comment_lines?(node)
90
- processed_source[line_range(node)].any? { |line| comment_line?(line) }
118
+ def comment_between_rescue_and_end?(node)
119
+ ancestor = node.each_ancestor(:kwbegin, :def, :defs, :block, :numblock).first
120
+ return unless ancestor
121
+
122
+ end_line = ancestor.loc.end.line
123
+ processed_source[node.first_line...end_line].any? { |line| comment_line?(line) }
124
+ end
125
+
126
+ def nil_body?(node)
127
+ node.body&.nil_type?
91
128
  end
92
129
  end
93
130
  end
@@ -0,0 +1,179 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Checks for uses of literal strings converted to
7
+ # a symbol where a literal symbol could be used instead.
8
+ #
9
+ # There are two possible styles for this cop.
10
+ # `strict` (default) will register an offense for any incorrect usage.
11
+ # `consistent` additionally requires hashes to use the same style for
12
+ # every symbol key (ie. if any symbol key needs to be quoted it requires
13
+ # all keys to be quoted).
14
+ #
15
+ # @example
16
+ # # bad
17
+ # 'string'.to_sym
18
+ # :symbol.to_sym
19
+ # 'underscored_string'.to_sym
20
+ # :'underscored_symbol'
21
+ # 'hyphenated-string'.to_sym
22
+ #
23
+ # # good
24
+ # :string
25
+ # :symbol
26
+ # :underscored_string
27
+ # :underscored_symbol
28
+ # :'hyphenated-string'
29
+ #
30
+ # @example EnforcedStyle: strict (default)
31
+ #
32
+ # # bad
33
+ # {
34
+ # 'a': 1,
35
+ # "b": 2,
36
+ # 'c-d': 3
37
+ # }
38
+ #
39
+ # # good (don't quote keys that don't require quoting)
40
+ # {
41
+ # a: 1,
42
+ # b: 2,
43
+ # 'c-d': 3
44
+ # }
45
+ #
46
+ # @example EnforcedStyle: consistent
47
+ #
48
+ # # bad
49
+ # {
50
+ # a: 1,
51
+ # 'b-c': 2
52
+ # }
53
+ #
54
+ # # good (quote all keys if any need quoting)
55
+ # {
56
+ # 'a': 1,
57
+ # 'b-c': 2
58
+ # }
59
+ #
60
+ # # good (no quoting required)
61
+ # {
62
+ # a: 1,
63
+ # b: 2
64
+ # }
65
+ #
66
+ class SymbolConversion < Base
67
+ extend AutoCorrector
68
+ include ConfigurableEnforcedStyle
69
+ include SymbolHelp
70
+
71
+ MSG = 'Unnecessary symbol conversion; use `%<correction>s` instead.'
72
+ MSG_CONSISTENCY = 'Symbol hash key should be quoted for consistency; ' \
73
+ 'use `%<correction>s` instead.'
74
+ RESTRICT_ON_SEND = %i[to_sym intern].freeze
75
+
76
+ def on_send(node)
77
+ return unless node.receiver
78
+ return unless node.receiver.str_type? || node.receiver.sym_type?
79
+
80
+ register_offense(node, correction: node.receiver.value.to_sym.inspect)
81
+ end
82
+
83
+ def on_sym(node)
84
+ return if ignored_node?(node) || properly_quoted?(node.source, node.value.inspect)
85
+
86
+ # `alias` arguments are symbols but since a symbol that requires
87
+ # being quoted is not a valid method identifier, it can be ignored
88
+ return if in_alias?(node)
89
+
90
+ # The `%I[]` and `%i[]` macros are parsed as normal arrays of symbols
91
+ # so they need to be ignored.
92
+ return if in_percent_literal_array?(node)
93
+
94
+ # Symbol hash keys have a different format and need to be handled separately
95
+ return correct_hash_key(node) if hash_key?(node)
96
+
97
+ register_offense(node, correction: node.value.inspect)
98
+ end
99
+
100
+ def on_hash(node)
101
+ # For `EnforcedStyle: strict`, hash keys are evaluated in `on_sym`
102
+ return unless style == :consistent
103
+
104
+ keys = node.keys.select(&:sym_type?)
105
+
106
+ if keys.any? { |key| requires_quotes?(key) }
107
+ correct_inconsistent_hash_keys(keys)
108
+ else
109
+ # If there are no symbol keys requiring quoting,
110
+ # treat the hash like `EnforcedStyle: strict`.
111
+ keys.each { |key| correct_hash_key(key) }
112
+ end
113
+ end
114
+
115
+ private
116
+
117
+ def register_offense(node, correction:, message: format(MSG, correction: correction))
118
+ add_offense(node, message: message) { |corrector| corrector.replace(node, correction) }
119
+ end
120
+
121
+ def properly_quoted?(source, value)
122
+ return true if style == :strict && (!source.match?(/['"]/) || value.end_with?('='))
123
+
124
+ source == value ||
125
+ # `Symbol#inspect` uses double quotes, but allow single-quoted
126
+ # symbols to work as well.
127
+ source.tr("'", '"') == value
128
+ end
129
+
130
+ def requires_quotes?(sym_node)
131
+ sym_node.value.inspect.match?(/^:".*?"|=$/)
132
+ end
133
+
134
+ def in_alias?(node)
135
+ node.parent&.alias_type?
136
+ end
137
+
138
+ def in_percent_literal_array?(node)
139
+ node.parent&.array_type? && node.parent&.percent_literal?
140
+ end
141
+
142
+ def correct_hash_key(node)
143
+ # Although some operators can be converted to symbols normally
144
+ # (ie. `:==`), these are not accepted as hash keys and will
145
+ # raise a syntax error (eg. `{ ==: ... }`). Therefore, if the
146
+ # symbol does not start with an alphanumeric or underscore, it
147
+ # will be ignored.
148
+ return unless node.value.to_s.match?(/\A[a-z0-9_]/i)
149
+
150
+ correction = node.value.inspect
151
+ correction = correction.delete_prefix(':') if node.parent.colon?
152
+ return if properly_quoted?(node.source, correction)
153
+
154
+ register_offense(
155
+ node,
156
+ correction: correction,
157
+ message: format(MSG, correction: node.parent.colon? ? "#{correction}:" : correction)
158
+ )
159
+ end
160
+
161
+ def correct_inconsistent_hash_keys(keys)
162
+ keys.each do |key|
163
+ ignore_node(key)
164
+
165
+ next if requires_quotes?(key)
166
+ next if properly_quoted?(key.source, %("#{key.value}"))
167
+
168
+ correction = %("#{key.value}")
169
+ register_offense(
170
+ key,
171
+ correction: correction,
172
+ message: format(MSG_CONSISTENCY, correction: "#{correction}:")
173
+ )
174
+ end
175
+ end
176
+ end
177
+ end
178
+ end
179
+ end
@@ -3,56 +3,40 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This is not actually a cop. It does not inspect anything. It just
7
- # provides methods to repack Parser's diagnostics/errors
6
+ # Repacks Parser's diagnostics/errors
8
7
  # into RuboCop's offenses.
9
- class Syntax < Cop
10
- PseudoSourceRange = Struct.new(:line, :column, :source_line, :begin_pos,
11
- :end_pos)
12
-
13
- ERROR_SOURCE_RANGE = PseudoSourceRange.new(1, 0, '', 0, 1).freeze
14
-
15
- def self.offenses_from_processed_source(processed_source,
16
- config, options)
17
- cop = new(config, options)
18
-
19
- if processed_source.parser_error
20
- cop.add_offense_from_error(processed_source.parser_error)
21
- end
22
-
8
+ class Syntax < Base
9
+ def on_other_file
10
+ add_offense_from_error(processed_source.parser_error) if processed_source.parser_error
23
11
  processed_source.diagnostics.each do |diagnostic|
24
- cop.add_offense_from_diagnostic(diagnostic,
25
- processed_source.ruby_version)
12
+ add_offense_from_diagnostic(diagnostic, processed_source.ruby_version)
26
13
  end
27
-
28
- cop.offenses
14
+ super
29
15
  end
30
16
 
17
+ private
18
+
31
19
  def add_offense_from_diagnostic(diagnostic, ruby_version)
32
20
  message =
33
21
  "#{diagnostic.message}\n(Using Ruby #{ruby_version} parser; " \
34
22
  'configure using `TargetRubyVersion` parameter, under `AllCops`)'
35
- add_offense(nil,
36
- location: diagnostic.location,
37
- message: message,
38
- severity: diagnostic.level)
23
+ add_offense(diagnostic.location, message: message, severity: diagnostic.level)
39
24
  end
40
25
 
41
26
  def add_offense_from_error(error)
42
27
  message = beautify_message(error.message)
43
- add_offense(nil,
44
- location: ERROR_SOURCE_RANGE,
45
- message: message,
46
- severity: :fatal)
28
+ add_global_offense(message, severity: :fatal)
47
29
  end
48
30
 
49
- private
50
-
51
31
  def beautify_message(message)
52
32
  message = message.capitalize
53
33
  message << '.' unless message.end_with?('.')
54
34
  message
55
35
  end
36
+
37
+ def find_severity(_range, _severity)
38
+ :fatal
39
+ end
56
40
  end
57
41
  end
58
42
  end
@@ -0,0 +1,99 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Ensures that `to_enum`/`enum_for`, called for the current method,
7
+ # has correct arguments.
8
+ #
9
+ # @example
10
+ # # bad
11
+ # def foo(x, y = 1)
12
+ # return to_enum(__callee__, x) # `y` is missing
13
+ # end
14
+ #
15
+ # # good
16
+ # def foo(x, y = 1)
17
+ # # Alternatives to `__callee__` are `__method__` and `:foo`.
18
+ # return to_enum(__callee__, x, y)
19
+ # end
20
+ #
21
+ # # good
22
+ # def foo(x, y = 1)
23
+ # # It is also allowed if it is wrapped in some method like Sorbet.
24
+ # return to_enum(T.must(__callee__), x, y)
25
+ # end
26
+ #
27
+ class ToEnumArguments < Base
28
+ MSG = 'Ensure you correctly provided all the arguments.'
29
+
30
+ RESTRICT_ON_SEND = %i[to_enum enum_for].freeze
31
+
32
+ # @!method enum_conversion_call?(node)
33
+ def_node_matcher :enum_conversion_call?, <<~PATTERN
34
+ (send {nil? self} {:to_enum :enum_for} $_ $...)
35
+ PATTERN
36
+
37
+ # @!method method_name?(node, name)
38
+ def_node_matcher :method_name?, <<~PATTERN
39
+ {(send nil? {:__method__ :__callee__}) (sym %1)}
40
+ PATTERN
41
+
42
+ # @!method passing_keyword_arg?(node, name)
43
+ def_node_matcher :passing_keyword_arg?, <<~PATTERN
44
+ (pair (sym %1) (lvar %1))
45
+ PATTERN
46
+
47
+ def on_send(node)
48
+ def_node = node.each_ancestor(:def, :defs).first
49
+ return unless def_node
50
+
51
+ enum_conversion_call?(node) do |method_node, arguments|
52
+ next if method_node.call_type? &&
53
+ !method_node.method?(:__method__) && !method_node.method?(:__callee__)
54
+ next if method_name?(method_node, def_node.method_name) &&
55
+ arguments_match?(arguments, def_node)
56
+
57
+ add_offense(node)
58
+ end
59
+ end
60
+
61
+ private
62
+
63
+ def arguments_match?(arguments, def_node)
64
+ index = 0
65
+
66
+ def_node.arguments.reject(&:blockarg_type?).all? do |def_arg|
67
+ send_arg = arguments[index]
68
+ case def_arg.type
69
+ when :arg, :restarg, :optarg
70
+ index += 1
71
+ end
72
+
73
+ send_arg && argument_match?(send_arg, def_arg)
74
+ end
75
+ end
76
+
77
+ # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity
78
+ def argument_match?(send_arg, def_arg)
79
+ def_arg_name = def_arg.children[0]
80
+
81
+ case def_arg.type
82
+ when :arg, :restarg
83
+ send_arg.source == def_arg.source
84
+ when :optarg
85
+ send_arg.source == def_arg_name.to_s
86
+ when :kwoptarg, :kwarg
87
+ send_arg.hash_type? &&
88
+ send_arg.pairs.any? { |pair| passing_keyword_arg?(pair, def_arg_name) }
89
+ when :kwrestarg
90
+ send_arg.each_child_node(:kwsplat).any? { |child| child.source == def_arg.source }
91
+ when :forward_arg
92
+ send_arg.forwarded_args_type?
93
+ end
94
+ end
95
+ # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity
96
+ end
97
+ end
98
+ end
99
+ end
@@ -3,32 +3,40 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks to make sure `#to_json` includes an optional argument.
6
+ # Checks to make sure `#to_json` includes an optional argument.
7
7
  # When overriding `#to_json`, callers may invoke JSON
8
8
  # generation via `JSON.generate(your_obj)`. Since `JSON#generate` allows
9
9
  # for an optional argument, your method should too.
10
10
  #
11
11
  # @example
12
- # # bad
13
- # def to_json
14
- # end
12
+ # class Point
13
+ # attr_reader :x, :y
14
+ #
15
+ # # bad, incorrect arity
16
+ # def to_json
17
+ # JSON.generate([x, y])
18
+ # end
19
+ #
20
+ # # good, preserving args
21
+ # def to_json(*args)
22
+ # JSON.generate([x, y], *args)
23
+ # end
15
24
  #
16
- # # good
17
- # def to_json(*_args)
25
+ # # good, discarding args
26
+ # def to_json(*_args)
27
+ # JSON.generate([x, y])
28
+ # end
18
29
  # end
19
30
  #
20
- class ToJSON < Cop
21
- MSG = ' `#to_json` requires an optional argument to be parsable ' \
22
- 'via JSON.generate(obj).'
31
+ class ToJSON < Base
32
+ extend AutoCorrector
33
+
34
+ MSG = '`#to_json` requires an optional argument to be parsable via JSON.generate(obj).'
23
35
 
24
36
  def on_def(node)
25
37
  return unless node.method?(:to_json) && node.arguments.empty?
26
38
 
27
- add_offense(node)
28
- end
29
-
30
- def autocorrect(node)
31
- lambda do |corrector|
39
+ add_offense(node) do |corrector|
32
40
  # The following used `*_args` because `to_json(*args)` has
33
41
  # an offense of `Lint/UnusedMethodArgument` cop if `*args`
34
42
  # is not used.
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Checks for top level return with arguments. If there is a
7
+ # top-level return statement with an argument, then the argument is
8
+ # always ignored. This is detected automatically since Ruby 2.7.
9
+ #
10
+ # @example
11
+ #
12
+ # # Detected since Ruby 2.7
13
+ # return 1 # 1 is always ignored.
14
+ class TopLevelReturnWithArgument < Base
15
+ # This cop works by validating the ancestors of the return node. A
16
+ # top-level return node's ancestors should not be of block, def, or
17
+ # defs type.
18
+
19
+ MSG = 'Top level return with argument detected.'
20
+
21
+ def on_return(return_node)
22
+ add_offense(return_node) if return_node.arguments? && ancestors_valid?(return_node)
23
+ end
24
+
25
+ private
26
+
27
+ def ancestors_valid?(return_node)
28
+ prohibited_ancestors = return_node.each_ancestor(:block, :def, :defs)
29
+ prohibited_ancestors.none?
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Checks for trailing commas in attribute declarations, such as
7
+ # `#attr_reader`. Leaving a trailing comma will nullify the next method
8
+ # definition by overriding it with a getter method.
9
+ #
10
+ # @example
11
+ #
12
+ # # bad
13
+ # class Foo
14
+ # attr_reader :foo,
15
+ #
16
+ # def bar
17
+ # puts "Unreachable."
18
+ # end
19
+ # end
20
+ #
21
+ # # good
22
+ # class Foo
23
+ # attr_reader :foo
24
+ #
25
+ # def bar
26
+ # puts "No problem!"
27
+ # end
28
+ # end
29
+ #
30
+ class TrailingCommaInAttributeDeclaration < Base
31
+ extend AutoCorrector
32
+ include RangeHelp
33
+
34
+ MSG = 'Avoid leaving a trailing comma in attribute declarations.'
35
+
36
+ def on_send(node)
37
+ return unless node.attribute_accessor? && node.arguments.last.def_type?
38
+
39
+ trailing_comma = trailing_comma_range(node)
40
+
41
+ add_offense(trailing_comma) { |corrector| corrector.remove(trailing_comma) }
42
+ end
43
+
44
+ private
45
+
46
+ def trailing_comma_range(node)
47
+ range_with_surrounding_space(
48
+ node.arguments[-2].source_range,
49
+ side: :right
50
+ ).end.resize(1)
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end