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
@@ -0,0 +1,95 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Checks for classes and metaclasses without a body.
7
+ # Such empty classes and metaclasses are typically an oversight or we should provide a comment
8
+ # to be clearer what we're aiming for.
9
+ #
10
+ # @example
11
+ # # bad
12
+ # class Foo
13
+ # end
14
+ #
15
+ # class Bar
16
+ # class << self
17
+ # end
18
+ # end
19
+ #
20
+ # class << obj
21
+ # end
22
+ #
23
+ # # good
24
+ # class Foo
25
+ # def do_something
26
+ # # ... code
27
+ # end
28
+ # end
29
+ #
30
+ # class Bar
31
+ # class << self
32
+ # attr_reader :bar
33
+ # end
34
+ # end
35
+ #
36
+ # class << obj
37
+ # attr_reader :bar
38
+ # end
39
+ #
40
+ # @example AllowComments: false (default)
41
+ # # bad
42
+ # class Foo
43
+ # # TODO: implement later
44
+ # end
45
+ #
46
+ # class Bar
47
+ # class << self
48
+ # # TODO: implement later
49
+ # end
50
+ # end
51
+ #
52
+ # class << obj
53
+ # # TODO: implement later
54
+ # end
55
+ #
56
+ # @example AllowComments: true
57
+ # # good
58
+ # class Foo
59
+ # # TODO: implement later
60
+ # end
61
+ #
62
+ # class Bar
63
+ # class << self
64
+ # # TODO: implement later
65
+ # end
66
+ # end
67
+ #
68
+ # class << obj
69
+ # # TODO: implement later
70
+ # end
71
+ #
72
+ class EmptyClass < Base
73
+ CLASS_MSG = 'Empty class detected.'
74
+ METACLASS_MSG = 'Empty metaclass detected.'
75
+
76
+ def on_class(node)
77
+ add_offense(node, message: CLASS_MSG) unless body_or_allowed_comment_lines?(node) ||
78
+ node.parent_class
79
+ end
80
+
81
+ def on_sclass(node)
82
+ add_offense(node, message: METACLASS_MSG) unless body_or_allowed_comment_lines?(node)
83
+ end
84
+
85
+ private
86
+
87
+ def body_or_allowed_comment_lines?(node)
88
+ return true if node.body
89
+
90
+ cop_config['AllowComments'] && processed_source.contains_comment?(node.source_range)
91
+ end
92
+ end
93
+ end
94
+ end
95
+ end
@@ -0,0 +1,177 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Checks for the presence of `if`, `elsif` and `unless` branches without a body.
7
+ #
8
+ # NOTE: empty `else` branches are handled by `Style/EmptyElse`.
9
+ #
10
+ # @safety
11
+ # Autocorrection for this cop is not safe. The conditions for empty branches that
12
+ # the autocorrection removes may have side effects, or the logic in subsequent
13
+ # branches may change due to the removal of a previous condition.
14
+ #
15
+ # @example
16
+ # # bad
17
+ # if condition
18
+ # end
19
+ #
20
+ # # bad
21
+ # unless condition
22
+ # end
23
+ #
24
+ # # bad
25
+ # if condition
26
+ # do_something
27
+ # elsif other_condition
28
+ # end
29
+ #
30
+ # # good
31
+ # if condition
32
+ # do_something
33
+ # end
34
+ #
35
+ # # good
36
+ # unless condition
37
+ # do_something
38
+ # end
39
+ #
40
+ # # good
41
+ # if condition
42
+ # do_something
43
+ # elsif other_condition
44
+ # do_something_else
45
+ # end
46
+ #
47
+ # @example AllowComments: true (default)
48
+ # # good
49
+ # if condition
50
+ # do_something
51
+ # elsif other_condition
52
+ # # noop
53
+ # end
54
+ #
55
+ # @example AllowComments: false
56
+ # # bad
57
+ # if condition
58
+ # do_something
59
+ # elsif other_condition
60
+ # # noop
61
+ # end
62
+ #
63
+ class EmptyConditionalBody < Base
64
+ extend AutoCorrector
65
+ include CommentsHelp
66
+ include RangeHelp
67
+
68
+ MSG = 'Avoid `%<keyword>s` branches without a body.'
69
+
70
+ def on_if(node)
71
+ return if node.body || same_line?(node.loc.begin, node.loc.end)
72
+ return if cop_config['AllowComments'] && contains_comments?(node)
73
+
74
+ add_offense(node, message: format(MSG, keyword: node.keyword)) do |corrector|
75
+ next if node.parent&.call_type?
76
+
77
+ autocorrect(corrector, node)
78
+ end
79
+ end
80
+
81
+ private
82
+
83
+ def autocorrect(corrector, node)
84
+ remove_comments(corrector, node)
85
+ remove_empty_branch(corrector, node)
86
+ correct_other_branches(corrector, node)
87
+ end
88
+
89
+ def remove_comments(corrector, node)
90
+ comments_in_range(node).each do |comment|
91
+ range = range_by_whole_lines(comment.source_range, include_final_newline: true)
92
+ corrector.remove(range)
93
+ end
94
+ end
95
+
96
+ def remove_empty_branch(corrector, node)
97
+ if empty_if_branch?(node) && else_branch?(node)
98
+ corrector.remove(branch_range(node))
99
+ else
100
+ corrector.remove(deletion_range(branch_range(node)))
101
+ end
102
+ end
103
+
104
+ def correct_other_branches(corrector, node)
105
+ return unless require_other_branches_correction?(node)
106
+
107
+ if node.else_branch&.if_type?
108
+ # Replace an orphaned `elsif` with `if`
109
+ corrector.replace(node.else_branch.loc.keyword, 'if')
110
+ else
111
+ # Flip orphaned `else`
112
+ corrector.replace(node.loc.else, "#{node.inverse_keyword} #{node.condition.source}")
113
+ end
114
+ end
115
+
116
+ def require_other_branches_correction?(node)
117
+ return false unless node.if_type? && node.else?
118
+ return false if !empty_if_branch?(node) && node.elsif?
119
+
120
+ !empty_elsif_branch?(node)
121
+ end
122
+
123
+ def empty_if_branch?(node)
124
+ return false unless (parent = node.parent)
125
+ return true unless parent.if_type?
126
+ return true unless (if_branch = parent.if_branch)
127
+
128
+ if_branch.if_type? && !if_branch.body
129
+ end
130
+
131
+ def empty_elsif_branch?(node)
132
+ return false unless (else_branch = node.else_branch)
133
+
134
+ else_branch.if_type? && !else_branch.body
135
+ end
136
+
137
+ def else_branch?(node)
138
+ node.else_branch && !node.else_branch.if_type?
139
+ end
140
+
141
+ # rubocop:disable Metrics/AbcSize
142
+ def branch_range(node)
143
+ if empty_if_branch?(node) && else_branch?(node)
144
+ node.source_range.with(end_pos: node.loc.else.begin_pos)
145
+ elsif node.loc.else
146
+ node.source_range.with(end_pos: node.condition.source_range.end_pos)
147
+ elsif all_branches_body_missing?(node)
148
+ if_node = node.ancestors.detect(&:if?)
149
+ node.source_range.with(end_pos: if_node.loc.end.end_pos)
150
+ else
151
+ node.source_range
152
+ end
153
+ end
154
+ # rubocop:enable Metrics/AbcSize
155
+
156
+ def all_branches_body_missing?(node)
157
+ return false unless node.parent&.if_type?
158
+
159
+ node.parent.branches.compact.empty?
160
+ end
161
+
162
+ def deletion_range(range)
163
+ # Collect a range between the start of the `if` node and the next relevant node,
164
+ # including final new line.
165
+ # Based on `RangeHelp#range_by_whole_lines` but allows the `if` to not start
166
+ # on the first column.
167
+ buffer = @processed_source.buffer
168
+
169
+ last_line = buffer.source_line(range.last_line)
170
+ end_offset = last_line.length - range.last_column + 1
171
+
172
+ range.adjust(end_pos: end_offset).intersect(buffer.source_range)
173
+ end
174
+ end
175
+ end
176
+ end
177
+ end
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks for empty `ensure` blocks
6
+ # Checks for empty `ensure` blocks
7
7
  #
8
8
  # @example
9
9
  #
@@ -42,17 +42,15 @@ module RuboCop
42
42
  # ensure
43
43
  # do_something_else
44
44
  # end
45
- class EmptyEnsure < Cop
45
+ class EmptyEnsure < Base
46
+ extend AutoCorrector
47
+
46
48
  MSG = 'Empty `ensure` block detected.'
47
49
 
48
50
  def on_ensure(node)
49
- add_offense(node, location: :keyword) unless node.body
50
- end
51
+ return if node.body
51
52
 
52
- def autocorrect(node)
53
- lambda do |corrector|
54
- corrector.remove(node.loc.keyword)
55
- end
53
+ add_offense(node.loc.keyword) { |corrector| corrector.remove(node.loc.keyword) }
56
54
  end
57
55
  end
58
56
  end
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks for the presence of empty expressions.
6
+ # Checks for the presence of empty expressions.
7
7
  #
8
8
  # @example
9
9
  #
@@ -22,13 +22,13 @@ module RuboCop
22
22
  # if (some_expression)
23
23
  # bar
24
24
  # end
25
- class EmptyExpression < Cop
25
+ class EmptyExpression < Base
26
26
  MSG = 'Avoid empty expressions.'
27
27
 
28
28
  def on_begin(node)
29
29
  return unless empty_expression?(node)
30
30
 
31
- add_offense(node, location: node.source_range)
31
+ add_offense(node)
32
32
  end
33
33
 
34
34
  private
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Enforces that Ruby source files are not empty.
7
+ #
8
+ # @example
9
+ # # bad
10
+ # # Empty file
11
+ #
12
+ # # good
13
+ # # File containing non commented source lines
14
+ #
15
+ # @example AllowComments: true (default)
16
+ # # good
17
+ # # File consisting only of comments
18
+ #
19
+ # @example AllowComments: false
20
+ # # bad
21
+ # # File consisting only of comments
22
+ #
23
+ class EmptyFile < Base
24
+ include RangeHelp
25
+
26
+ MSG = 'Empty file detected.'
27
+
28
+ def on_new_investigation
29
+ add_global_offense(MSG) if offending?
30
+ end
31
+
32
+ private
33
+
34
+ def offending?
35
+ empty_file? || (!cop_config['AllowComments'] && contains_only_comments?)
36
+ end
37
+
38
+ def empty_file?
39
+ processed_source.buffer.source.empty?
40
+ end
41
+
42
+ def contains_only_comments?
43
+ processed_source.lines.all? { |line| line.blank? || comment_line?(line) }
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Lint
6
+ # Checks for the presence of `in` pattern branches without a body.
7
+ #
8
+ # @example
9
+ #
10
+ # # bad
11
+ # case condition
12
+ # in [a]
13
+ # do_something
14
+ # in [a, b]
15
+ # end
16
+ #
17
+ # # good
18
+ # case condition
19
+ # in [a]
20
+ # do_something
21
+ # in [a, b]
22
+ # nil
23
+ # end
24
+ #
25
+ # @example AllowComments: true (default)
26
+ #
27
+ # # good
28
+ # case condition
29
+ # in [a]
30
+ # do_something
31
+ # in [a, b]
32
+ # # noop
33
+ # end
34
+ #
35
+ # @example AllowComments: false
36
+ #
37
+ # # bad
38
+ # case condition
39
+ # in [a]
40
+ # do_something
41
+ # in [a, b]
42
+ # # noop
43
+ # end
44
+ #
45
+ class EmptyInPattern < Base
46
+ extend TargetRubyVersion
47
+ include CommentsHelp
48
+
49
+ MSG = 'Avoid `in` branches without a body.'
50
+
51
+ minimum_target_ruby_version 2.7
52
+
53
+ def on_case_match(node)
54
+ node.in_pattern_branches.each do |branch|
55
+ next if branch.body
56
+ next if cop_config['AllowComments'] && contains_comments?(branch)
57
+
58
+ add_offense(branch)
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks for empty interpolation.
6
+ # Checks for empty interpolation.
7
7
  #
8
8
  # @example
9
9
  #
@@ -16,19 +16,16 @@ module RuboCop
16
16
  # # good
17
17
  #
18
18
  # "result is #{some_result}"
19
- class EmptyInterpolation < Cop
19
+ class EmptyInterpolation < Base
20
20
  include Interpolation
21
+ extend AutoCorrector
21
22
 
22
23
  MSG = 'Empty interpolation detected.'
23
24
 
24
25
  def on_interpolation(begin_node)
25
- add_offense(begin_node) if begin_node.children.empty?
26
- end
26
+ return unless begin_node.children.empty?
27
27
 
28
- def autocorrect(node)
29
- lambda do |collector|
30
- collector.remove(node.loc.expression)
31
- end
28
+ add_offense(begin_node) { |corrector| corrector.remove(begin_node) }
32
29
  end
33
30
  end
34
31
  end
@@ -3,33 +3,58 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks for the presence of `when` branches without a body.
6
+ # Checks for the presence of `when` branches without a body.
7
7
  #
8
8
  # @example
9
9
  #
10
10
  # # bad
11
- #
12
11
  # case foo
13
- # when bar then 1
14
- # when baz then # nothing
12
+ # when bar
13
+ # do_something
14
+ # when baz
15
15
  # end
16
16
  #
17
17
  # @example
18
18
  #
19
19
  # # good
20
+ # case condition
21
+ # when foo
22
+ # do_something
23
+ # when bar
24
+ # nil
25
+ # end
20
26
  #
21
- # case foo
22
- # when bar then 1
23
- # when baz then 2
27
+ # @example AllowComments: true (default)
28
+ #
29
+ # # good
30
+ # case condition
31
+ # when foo
32
+ # do_something
33
+ # when bar
34
+ # # noop
24
35
  # end
25
- class EmptyWhen < Cop
36
+ #
37
+ # @example AllowComments: false
38
+ #
39
+ # # bad
40
+ # case condition
41
+ # when foo
42
+ # do_something
43
+ # when bar
44
+ # # do nothing
45
+ # end
46
+ #
47
+ class EmptyWhen < Base
48
+ include CommentsHelp
49
+
26
50
  MSG = 'Avoid `when` branches without a body.'
27
51
 
28
52
  def on_case(node)
29
53
  node.each_when do |when_node|
30
54
  next if when_node.body
55
+ next if cop_config['AllowComments'] && contains_comments?(when_node)
31
56
 
32
- add_offense(when_node, location: when_node.source_range)
57
+ add_offense(when_node)
33
58
  end
34
59
  end
35
60
  end
@@ -3,42 +3,55 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Lint
6
- # This cop checks for *return* from an *ensure* block.
7
- # Explicit return from an ensure block alters the control flow
8
- # as the return will take precedence over any exception being raised,
6
+ # Checks for `return` from an `ensure` block.
7
+ # `return` from an ensure block is a dangerous code smell as it
8
+ # will take precedence over any exception being raised,
9
9
  # and the exception will be silently thrown away as if it were rescued.
10
10
  #
11
+ # If you want to rescue some (or all) exceptions, best to do it explicitly
12
+ #
11
13
  # @example
12
14
  #
13
15
  # # bad
14
16
  #
15
- # begin
17
+ # def foo
16
18
  # do_something
17
19
  # ensure
18
- # do_something_else
19
- # return
20
+ # cleanup
21
+ # return self
20
22
  # end
21
23
  #
22
24
  # @example
23
25
  #
24
26
  # # good
25
27
  #
26
- # begin
28
+ # def foo
27
29
  # do_something
30
+ # self
31
+ # ensure
32
+ # cleanup
33
+ # end
34
+ #
35
+ # # also good
36
+ #
37
+ # def foo
38
+ # begin
39
+ # do_something
40
+ # rescue SomeException
41
+ # # Let's ignore this exception
42
+ # end
43
+ # self
28
44
  # ensure
29
- # do_something_else
45
+ # cleanup
30
46
  # end
31
- class EnsureReturn < Cop
47
+ class EnsureReturn < Base
48
+ extend AutoCorrector
49
+ include RangeHelp
50
+
32
51
  MSG = 'Do not return from an `ensure` block.'
33
52
 
34
53
  def on_ensure(node)
35
- ensure_body = node.body
36
-
37
- return unless ensure_body
38
-
39
- ensure_body.each_node(:return) do |return_node|
40
- add_offense(return_node)
41
- end
54
+ node.body&.each_node(:return) { |return_node| add_offense(return_node) }
42
55
  end
43
56
  end
44
57
  end