rubocop 1.69.2 → 1.75.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (349) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +4 -4
  4. data/config/default.yml +154 -23
  5. data/config/internal_affairs.yml +20 -0
  6. data/config/obsoletion.yml +3 -1
  7. data/lib/rubocop/cli/command/execute_runner.rb +3 -3
  8. data/lib/rubocop/cli/command/show_cops.rb +24 -2
  9. data/lib/rubocop/cli/command/suggest_extensions.rb +7 -1
  10. data/lib/rubocop/cli.rb +1 -1
  11. data/lib/rubocop/comment_config.rb +2 -2
  12. data/lib/rubocop/config.rb +52 -10
  13. data/lib/rubocop/config_loader.rb +52 -9
  14. data/lib/rubocop/config_loader_resolver.rb +36 -10
  15. data/lib/rubocop/config_obsoletion/extracted_cop.rb +4 -3
  16. data/lib/rubocop/config_obsoletion/renamed_cop.rb +18 -3
  17. data/lib/rubocop/config_obsoletion.rb +46 -2
  18. data/lib/rubocop/config_validator.rb +20 -9
  19. data/lib/rubocop/cop/autocorrect_logic.rb +1 -1
  20. data/lib/rubocop/cop/base.rb +6 -0
  21. data/lib/rubocop/cop/bundler/duplicated_gem.rb +1 -1
  22. data/lib/rubocop/cop/bundler/gem_comment.rb +1 -1
  23. data/lib/rubocop/cop/internal_affairs/cop_enabled.rb +85 -0
  24. data/lib/rubocop/cop/internal_affairs/example_description.rb +7 -3
  25. data/lib/rubocop/cop/internal_affairs/location_exists.rb +116 -0
  26. data/lib/rubocop/cop/internal_affairs/location_expression.rb +2 -1
  27. data/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +3 -2
  28. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +1 -1
  29. data/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +63 -0
  30. data/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +131 -0
  31. data/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +229 -0
  32. data/lib/rubocop/cop/internal_affairs/node_type_group.rb +91 -0
  33. data/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +126 -0
  34. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +4 -3
  35. data/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +90 -0
  36. data/lib/rubocop/cop/internal_affairs/plugin.rb +33 -0
  37. data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +6 -5
  38. data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +3 -1
  39. data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +5 -4
  40. data/lib/rubocop/cop/internal_affairs/undefined_config.rb +7 -1
  41. data/lib/rubocop/cop/internal_affairs.rb +6 -16
  42. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +1 -1
  43. data/lib/rubocop/cop/layout/argument_alignment.rb +2 -8
  44. data/lib/rubocop/cop/layout/block_alignment.rb +4 -1
  45. data/lib/rubocop/cop/layout/block_end_newline.rb +1 -0
  46. data/lib/rubocop/cop/layout/class_structure.rb +9 -9
  47. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +4 -4
  48. data/lib/rubocop/cop/layout/dot_position.rb +1 -1
  49. data/lib/rubocop/cop/layout/else_alignment.rb +2 -2
  50. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +1 -1
  51. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +7 -11
  52. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +28 -1
  53. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +1 -0
  54. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +1 -1
  55. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +22 -2
  56. data/lib/rubocop/cop/layout/end_alignment.rb +1 -1
  57. data/lib/rubocop/cop/layout/extra_spacing.rb +1 -1
  58. data/lib/rubocop/cop/layout/first_argument_indentation.rb +3 -8
  59. data/lib/rubocop/cop/layout/first_array_element_indentation.rb +2 -7
  60. data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +2 -7
  61. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +1 -1
  62. data/lib/rubocop/cop/layout/first_parameter_indentation.rb +2 -2
  63. data/lib/rubocop/cop/layout/hash_alignment.rb +6 -4
  64. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2 -1
  65. data/lib/rubocop/cop/layout/indentation_width.rb +1 -0
  66. data/lib/rubocop/cop/layout/line_continuation_spacing.rb +7 -1
  67. data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +2 -2
  68. data/lib/rubocop/cop/layout/line_length.rb +9 -4
  69. data/lib/rubocop/cop/layout/multiline_block_layout.rb +1 -0
  70. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +1 -1
  71. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +25 -0
  72. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +1 -0
  73. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +4 -4
  74. data/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +1 -0
  75. data/lib/rubocop/cop/layout/redundant_line_break.rb +16 -11
  76. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +2 -2
  77. data/lib/rubocop/cop/layout/single_line_block_chain.rb +1 -1
  78. data/lib/rubocop/cop/layout/space_after_colon.rb +2 -2
  79. data/lib/rubocop/cop/layout/space_after_comma.rb +1 -1
  80. data/lib/rubocop/cop/layout/space_after_method_name.rb +1 -1
  81. data/lib/rubocop/cop/layout/space_after_semicolon.rb +1 -1
  82. data/lib/rubocop/cop/layout/space_around_keyword.rb +1 -0
  83. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +1 -1
  84. data/lib/rubocop/cop/layout/space_around_operators.rb +7 -4
  85. data/lib/rubocop/cop/layout/space_before_block_braces.rb +1 -0
  86. data/lib/rubocop/cop/layout/space_before_comma.rb +1 -1
  87. data/lib/rubocop/cop/layout/space_before_semicolon.rb +1 -1
  88. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +1 -0
  89. data/lib/rubocop/cop/layout/trailing_whitespace.rb +5 -3
  90. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +1 -1
  91. data/lib/rubocop/cop/lint/array_literal_in_regexp.rb +119 -0
  92. data/lib/rubocop/cop/lint/assignment_in_condition.rb +1 -3
  93. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +1 -1
  94. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +3 -3
  95. data/lib/rubocop/cop/lint/constant_reassignment.rb +148 -0
  96. data/lib/rubocop/cop/lint/cop_directive_syntax.rb +84 -0
  97. data/lib/rubocop/cop/lint/debugger.rb +3 -3
  98. data/lib/rubocop/cop/lint/duplicate_match_pattern.rb +1 -1
  99. data/lib/rubocop/cop/lint/duplicate_methods.rb +0 -14
  100. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +1 -1
  101. data/lib/rubocop/cop/lint/duplicate_set_element.rb +20 -7
  102. data/lib/rubocop/cop/lint/empty_conditional_body.rb +14 -64
  103. data/lib/rubocop/cop/lint/empty_expression.rb +0 -2
  104. data/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -6
  105. data/lib/rubocop/cop/lint/float_comparison.rb +6 -8
  106. data/lib/rubocop/cop/lint/float_out_of_range.rb +1 -1
  107. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +2 -2
  108. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +1 -1
  109. data/lib/rubocop/cop/lint/literal_as_condition.rb +103 -9
  110. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +24 -6
  111. data/lib/rubocop/cop/lint/missing_super.rb +2 -2
  112. data/lib/rubocop/cop/lint/mixed_case_range.rb +3 -3
  113. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +1 -1
  114. data/lib/rubocop/cop/lint/nested_method_definition.rb +8 -4
  115. data/lib/rubocop/cop/lint/next_without_accumulator.rb +1 -1
  116. data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +4 -3
  117. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +3 -3
  118. data/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +18 -31
  119. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +2 -1
  120. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +1 -5
  121. data/lib/rubocop/cop/lint/raise_exception.rb +29 -10
  122. data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +1 -1
  123. data/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -21
  124. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +2 -2
  125. data/lib/rubocop/cop/lint/redundant_type_conversion.rb +258 -0
  126. data/lib/rubocop/cop/lint/redundant_with_index.rb +3 -0
  127. data/lib/rubocop/cop/lint/redundant_with_object.rb +3 -0
  128. data/lib/rubocop/cop/lint/rescue_exception.rb +1 -1
  129. data/lib/rubocop/cop/lint/return_in_void_context.rb +4 -11
  130. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +8 -1
  131. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +8 -1
  132. data/lib/rubocop/cop/lint/shared_mutable_default.rb +76 -0
  133. data/lib/rubocop/cop/lint/suppressed_exception.rb +1 -1
  134. data/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +111 -0
  135. data/lib/rubocop/cop/lint/symbol_conversion.rb +1 -1
  136. data/lib/rubocop/cop/lint/syntax.rb +4 -1
  137. data/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +1 -4
  138. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +3 -1
  139. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +1 -1
  140. data/lib/rubocop/cop/lint/unreachable_code.rb +2 -1
  141. data/lib/rubocop/cop/lint/unreachable_loop.rb +6 -6
  142. data/lib/rubocop/cop/lint/useless_access_modifier.rb +5 -4
  143. data/lib/rubocop/cop/lint/useless_assignment.rb +1 -1
  144. data/lib/rubocop/cop/lint/useless_constant_scoping.rb +71 -0
  145. data/lib/rubocop/cop/lint/useless_method_definition.rb +1 -1
  146. data/lib/rubocop/cop/lint/useless_numeric_operation.rb +2 -1
  147. data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +2 -2
  148. data/lib/rubocop/cop/lint/void.rb +12 -9
  149. data/lib/rubocop/cop/metrics/block_length.rb +1 -0
  150. data/lib/rubocop/cop/metrics/block_nesting.rb +1 -1
  151. data/lib/rubocop/cop/metrics/collection_literal_length.rb +7 -0
  152. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +1 -1
  153. data/lib/rubocop/cop/metrics/method_length.rb +9 -1
  154. data/lib/rubocop/cop/metrics/module_length.rb +1 -1
  155. data/lib/rubocop/cop/metrics/perceived_complexity.rb +1 -1
  156. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +1 -1
  157. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +7 -7
  158. data/lib/rubocop/cop/mixin/alignment.rb +2 -2
  159. data/lib/rubocop/cop/mixin/allowed_pattern.rb +4 -4
  160. data/lib/rubocop/cop/mixin/check_line_breakable.rb +13 -13
  161. data/lib/rubocop/cop/mixin/check_single_line_suitability.rb +1 -1
  162. data/lib/rubocop/cop/mixin/comments_help.rb +4 -2
  163. data/lib/rubocop/cop/mixin/dig_help.rb +1 -1
  164. data/lib/rubocop/cop/mixin/forbidden_identifiers.rb +20 -0
  165. data/lib/rubocop/cop/mixin/forbidden_pattern.rb +16 -0
  166. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +1 -1
  167. data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +22 -22
  168. data/lib/rubocop/cop/mixin/hash_subset.rb +203 -0
  169. data/lib/rubocop/cop/mixin/hash_transform_method.rb +74 -74
  170. data/lib/rubocop/cop/mixin/method_complexity.rb +2 -1
  171. data/lib/rubocop/cop/mixin/percent_literal.rb +1 -1
  172. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +48 -24
  173. data/lib/rubocop/cop/mixin/range_help.rb +15 -3
  174. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +1 -1
  175. data/lib/rubocop/cop/mixin/statement_modifier.rb +8 -3
  176. data/lib/rubocop/cop/mixin/string_help.rb +2 -2
  177. data/lib/rubocop/cop/mixin/string_literals_help.rb +1 -1
  178. data/lib/rubocop/cop/mixin/target_ruby_version.rb +1 -1
  179. data/lib/rubocop/cop/mixin/trailing_comma.rb +15 -3
  180. data/lib/rubocop/cop/naming/block_forwarding.rb +19 -15
  181. data/lib/rubocop/cop/naming/method_name.rb +64 -8
  182. data/lib/rubocop/cop/naming/predicate_name.rb +44 -0
  183. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +3 -3
  184. data/lib/rubocop/cop/naming/variable_name.rb +51 -6
  185. data/lib/rubocop/cop/registry.rb +9 -6
  186. data/lib/rubocop/cop/security/compound_hash.rb +1 -0
  187. data/lib/rubocop/cop/style/access_modifier_declarations.rb +34 -5
  188. data/lib/rubocop/cop/style/accessor_grouping.rb +19 -5
  189. data/lib/rubocop/cop/style/and_or.rb +1 -1
  190. data/lib/rubocop/cop/style/arguments_forwarding.rb +39 -23
  191. data/lib/rubocop/cop/style/array_first_last.rb +18 -2
  192. data/lib/rubocop/cop/style/array_intersect.rb +39 -28
  193. data/lib/rubocop/cop/style/block_delimiters.rb +9 -21
  194. data/lib/rubocop/cop/style/class_and_module_children.rb +35 -10
  195. data/lib/rubocop/cop/style/collection_methods.rb +2 -1
  196. data/lib/rubocop/cop/style/combinable_defined.rb +1 -1
  197. data/lib/rubocop/cop/style/combinable_loops.rb +3 -2
  198. data/lib/rubocop/cop/style/commented_keyword.rb +10 -3
  199. data/lib/rubocop/cop/style/comparable_between.rb +75 -0
  200. data/lib/rubocop/cop/style/concat_array_literals.rb +1 -1
  201. data/lib/rubocop/cop/style/conditional_assignment.rb +6 -4
  202. data/lib/rubocop/cop/style/documentation.rb +1 -1
  203. data/lib/rubocop/cop/style/double_negation.rb +4 -4
  204. data/lib/rubocop/cop/style/each_for_simple_loop.rb +4 -7
  205. data/lib/rubocop/cop/style/each_with_object.rb +2 -3
  206. data/lib/rubocop/cop/style/empty_else.rb +4 -2
  207. data/lib/rubocop/cop/style/empty_literal.rb +1 -1
  208. data/lib/rubocop/cop/style/empty_method.rb +1 -1
  209. data/lib/rubocop/cop/style/endless_method.rb +163 -18
  210. data/lib/rubocop/cop/style/eval_with_location.rb +1 -1
  211. data/lib/rubocop/cop/style/exact_regexp_match.rb +3 -10
  212. data/lib/rubocop/cop/style/expand_path_arguments.rb +2 -7
  213. data/lib/rubocop/cop/style/explicit_block_argument.rb +15 -2
  214. data/lib/rubocop/cop/style/exponential_notation.rb +3 -3
  215. data/lib/rubocop/cop/style/fetch_env_var.rb +1 -1
  216. data/lib/rubocop/cop/style/float_division.rb +8 -4
  217. data/lib/rubocop/cop/style/for.rb +1 -0
  218. data/lib/rubocop/cop/style/format_string_token.rb +38 -11
  219. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +1 -1
  220. data/lib/rubocop/cop/style/guard_clause.rb +2 -1
  221. data/lib/rubocop/cop/style/hash_each_methods.rb +6 -8
  222. data/lib/rubocop/cop/style/hash_except.rb +24 -148
  223. data/lib/rubocop/cop/style/hash_fetch_chain.rb +105 -0
  224. data/lib/rubocop/cop/style/hash_slice.rb +80 -0
  225. data/lib/rubocop/cop/style/hash_syntax.rb +6 -3
  226. data/lib/rubocop/cop/style/identical_conditional_branches.rb +22 -3
  227. data/lib/rubocop/cop/style/if_inside_else.rb +10 -13
  228. data/lib/rubocop/cop/style/if_unless_modifier.rb +5 -5
  229. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +1 -1
  230. data/lib/rubocop/cop/style/if_with_semicolon.rb +2 -2
  231. data/lib/rubocop/cop/style/infinite_loop.rb +1 -1
  232. data/lib/rubocop/cop/style/inverse_methods.rb +15 -11
  233. data/lib/rubocop/cop/style/invertible_unless_condition.rb +2 -2
  234. data/lib/rubocop/cop/style/ip_addresses.rb +2 -2
  235. data/lib/rubocop/cop/style/it_assignment.rb +36 -0
  236. data/lib/rubocop/cop/style/it_block_parameter.rb +100 -0
  237. data/lib/rubocop/cop/style/keyword_parameters_order.rb +14 -8
  238. data/lib/rubocop/cop/style/lambda.rb +1 -0
  239. data/lib/rubocop/cop/style/line_end_concatenation.rb +10 -4
  240. data/lib/rubocop/cop/style/map_into_array.rb +2 -1
  241. data/lib/rubocop/cop/style/map_to_hash.rb +1 -1
  242. data/lib/rubocop/cop/style/map_to_set.rb +3 -2
  243. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +22 -15
  244. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +2 -0
  245. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +2 -1
  246. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +3 -4
  247. data/lib/rubocop/cop/style/method_def_parentheses.rb +1 -1
  248. data/lib/rubocop/cop/style/missing_else.rb +2 -0
  249. data/lib/rubocop/cop/style/multiline_block_chain.rb +3 -2
  250. data/lib/rubocop/cop/style/multiline_method_signature.rb +1 -9
  251. data/lib/rubocop/cop/style/multiple_comparison.rb +26 -20
  252. data/lib/rubocop/cop/style/mutable_constant.rb +3 -3
  253. data/lib/rubocop/cop/style/negated_if_else_condition.rb +1 -1
  254. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +1 -1
  255. data/lib/rubocop/cop/style/next.rb +44 -0
  256. data/lib/rubocop/cop/style/object_then.rb +14 -15
  257. data/lib/rubocop/cop/style/open_struct_use.rb +5 -5
  258. data/lib/rubocop/cop/style/parallel_assignment.rb +1 -5
  259. data/lib/rubocop/cop/style/parentheses_around_condition.rb +2 -2
  260. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
  261. data/lib/rubocop/cop/style/proc.rb +2 -2
  262. data/lib/rubocop/cop/style/quoted_symbols.rb +1 -1
  263. data/lib/rubocop/cop/style/raise_args.rb +14 -12
  264. data/lib/rubocop/cop/style/random_with_offset.rb +3 -3
  265. data/lib/rubocop/cop/style/redundant_begin.rb +2 -1
  266. data/lib/rubocop/cop/style/redundant_condition.rb +47 -2
  267. data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +16 -5
  268. data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +6 -10
  269. data/lib/rubocop/cop/style/redundant_each.rb +1 -1
  270. data/lib/rubocop/cop/style/redundant_exception.rb +2 -2
  271. data/lib/rubocop/cop/style/redundant_format.rb +257 -0
  272. data/lib/rubocop/cop/style/redundant_freeze.rb +3 -3
  273. data/lib/rubocop/cop/style/redundant_initialize.rb +12 -3
  274. data/lib/rubocop/cop/style/redundant_line_continuation.rb +34 -13
  275. data/lib/rubocop/cop/style/redundant_parentheses.rb +30 -15
  276. data/lib/rubocop/cop/style/redundant_regexp_argument.rb +3 -0
  277. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +1 -1
  278. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +1 -1
  279. data/lib/rubocop/cop/style/redundant_self.rb +1 -0
  280. data/lib/rubocop/cop/style/redundant_self_assignment.rb +14 -28
  281. data/lib/rubocop/cop/style/redundant_sort.rb +2 -2
  282. data/lib/rubocop/cop/style/redundant_sort_by.rb +17 -1
  283. data/lib/rubocop/cop/style/redundant_string_escape.rb +2 -2
  284. data/lib/rubocop/cop/style/rescue_modifier.rb +3 -0
  285. data/lib/rubocop/cop/style/return_nil.rb +1 -1
  286. data/lib/rubocop/cop/style/safe_navigation.rb +2 -2
  287. data/lib/rubocop/cop/style/select_by_regexp.rb +4 -1
  288. data/lib/rubocop/cop/style/semicolon.rb +1 -1
  289. data/lib/rubocop/cop/style/send_with_literal_method_name.rb +2 -1
  290. data/lib/rubocop/cop/style/single_line_block_params.rb +1 -1
  291. data/lib/rubocop/cop/style/single_line_do_end_block.rb +4 -3
  292. data/lib/rubocop/cop/style/single_line_methods.rb +6 -7
  293. data/lib/rubocop/cop/style/slicing_with_range.rb +40 -11
  294. data/lib/rubocop/cop/style/sole_nested_conditional.rb +41 -106
  295. data/lib/rubocop/cop/style/string_concatenation.rb +2 -2
  296. data/lib/rubocop/cop/style/string_literals.rb +1 -1
  297. data/lib/rubocop/cop/style/string_methods.rb +1 -1
  298. data/lib/rubocop/cop/style/super_arguments.rb +65 -17
  299. data/lib/rubocop/cop/style/symbol_proc.rb +2 -0
  300. data/lib/rubocop/cop/style/ternary_parentheses.rb +1 -1
  301. data/lib/rubocop/cop/style/top_level_method_definition.rb +2 -1
  302. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +4 -1
  303. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +47 -6
  304. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +48 -6
  305. data/lib/rubocop/cop/style/trivial_accessors.rb +1 -1
  306. data/lib/rubocop/cop/style/while_until_modifier.rb +0 -1
  307. data/lib/rubocop/cop/style/yoda_condition.rb +8 -4
  308. data/lib/rubocop/cop/style/yoda_expression.rb +2 -1
  309. data/lib/rubocop/cop/util.rb +12 -5
  310. data/lib/rubocop/cop/utils/format_string.rb +10 -5
  311. data/lib/rubocop/cop/variable_force/scope.rb +1 -1
  312. data/lib/rubocop/cop/variable_force/variable.rb +9 -2
  313. data/lib/rubocop/cop/variable_force/variable_table.rb +3 -3
  314. data/lib/rubocop/cop/variable_force.rb +1 -1
  315. data/lib/rubocop/cops_documentation_generator.rb +25 -14
  316. data/lib/rubocop/directive_comment.rb +45 -11
  317. data/lib/rubocop/ext/regexp_node.rb +0 -1
  318. data/lib/rubocop/formatter/formatter_set.rb +1 -1
  319. data/lib/rubocop/lsp/diagnostic.rb +189 -0
  320. data/lib/rubocop/lsp/logger.rb +2 -2
  321. data/lib/rubocop/lsp/routes.rb +7 -23
  322. data/lib/rubocop/lsp/runtime.rb +18 -50
  323. data/lib/rubocop/lsp/server.rb +0 -2
  324. data/lib/rubocop/lsp/stdin_runner.rb +85 -0
  325. data/lib/rubocop/options.rb +28 -12
  326. data/lib/rubocop/path_util.rb +15 -8
  327. data/lib/rubocop/plugin/configuration_integrator.rb +143 -0
  328. data/lib/rubocop/plugin/load_error.rb +26 -0
  329. data/lib/rubocop/plugin/loader.rb +100 -0
  330. data/lib/rubocop/plugin/not_supported_error.rb +29 -0
  331. data/lib/rubocop/plugin.rb +46 -0
  332. data/lib/rubocop/rake_task.rb +4 -1
  333. data/lib/rubocop/result_cache.rb +13 -13
  334. data/lib/rubocop/rspec/cop_helper.rb +13 -1
  335. data/lib/rubocop/rspec/expect_offense.rb +6 -2
  336. data/lib/rubocop/rspec/shared_contexts.rb +39 -1
  337. data/lib/rubocop/rspec/support.rb +4 -2
  338. data/lib/rubocop/runner.rb +10 -7
  339. data/lib/rubocop/server/cache.rb +35 -2
  340. data/lib/rubocop/server/cli.rb +2 -2
  341. data/lib/rubocop/target_finder.rb +1 -0
  342. data/lib/rubocop/target_ruby.rb +16 -1
  343. data/lib/rubocop/version.rb +30 -8
  344. data/lib/rubocop.rb +16 -1
  345. data/lib/ruby_lsp/rubocop/addon.rb +75 -0
  346. data/lib/ruby_lsp/rubocop/runtime_adapter.rb +65 -0
  347. metadata +59 -16
  348. data/lib/rubocop/cop/utils/regexp_ranges.rb +0 -113
  349. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45af4a986637b8c3dacb16d942870c2138501ae834e79c0875b81bbf09644b54
4
- data.tar.gz: 65961fc4cb25730ad9528201e22a82427def59f6ad5f048cd01a0ca89a437c3c
3
+ metadata.gz: a064330786019e0efee6b496e761b05bea0286f0afdcbb4fffad2f07433aef9d
4
+ data.tar.gz: eb1ee00d5fe060ea49203635df3c7457df6f416de93c9801a687386aa02f4768
5
5
  SHA512:
6
- metadata.gz: aa6eb7a2cbf39d99cbda0faff3dfe690a61e9665847c21669bc9a005f9ac316e9404a8babc8cadf7f033bf82afcf317c8c503ede2306e8b3a8c211abaa878cb9
7
- data.tar.gz: 126f20d27ebf2e0098d0a1039230fea4178d2a196693db8c75326a7f3fdc797b1f030af3d116f2d74f69bb70cc033372ede6836962b2c47632a9ecf4f524dd56
6
+ metadata.gz: 336c6e38cc6162a00ca4c9780dcc71fb4b03a785af0eb6abb6c30baf2e1c8512af12e921a2036564102290324e418278cb83ceb06d7a1ec44ddf314923275f89
7
+ data.tar.gz: cbe9d5ab5685dbab70de2b281ecc807494631a294273260d87315d6875b753d9c2b60f6d7c14379eaf5b384894a4400c747ef91a57323c418c66a51076b33f06
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012-24 Bozhidar Batsov
1
+ Copyright (c) 2012-25 Bozhidar Batsov
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -52,7 +52,7 @@ To prevent an unwanted RuboCop update you might want to use a conservative versi
52
52
  in your `Gemfile`:
53
53
 
54
54
  ```rb
55
- gem 'rubocop', '~> 1.69', require: false
55
+ gem 'rubocop', '~> 1.75', require: false
56
56
  ```
57
57
 
58
58
  See [our versioning policy](https://docs.rubocop.org/rubocop/versioning.html) for further details.
@@ -241,11 +241,11 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s
241
241
  <a href="https://opencollective.com/rubocop/organization/28/website" target="_blank"><img src="https://opencollective.com/rubocop/organization/28/avatar.svg"></a>
242
242
  <a href="https://opencollective.com/rubocop/organization/29/website" target="_blank"><img src="https://opencollective.com/rubocop/organization/29/avatar.svg"></a>
243
243
 
244
- ## Changelog
244
+ ## Release Notes
245
245
 
246
- RuboCop's changelog is available [here](CHANGELOG.md).
246
+ RuboCop's release notes are available [here](https://github.com/rubocop/rubocop/releases).
247
247
 
248
248
  ## Copyright
249
249
 
250
- Copyright (c) 2012-2024 Bozhidar Batsov. See [LICENSE.txt](LICENSE.txt) for
250
+ Copyright (c) 2012-2025 Bozhidar Batsov. See [LICENSE.txt](LICENSE.txt) for
251
251
  further details.
data/config/default.yml CHANGED
@@ -146,12 +146,14 @@ AllCops:
146
146
  # Ruby version is still unresolved, RuboCop will use the oldest officially
147
147
  # supported Ruby version (currently Ruby 2.7).
148
148
  TargetRubyVersion: ~
149
- # You can specify the parser engine. There are two options available:
149
+ # RuboCop choses the parser engine automatically but you can also specify it yourself.
150
+ # These options are available:
151
+ # - `default`
150
152
  # - `parser_whitequark` ... https://github.com/whitequark/parser
151
153
  # - `parser_prism` ... https://github.com/ruby/prism (`Prism::Translation::Parser`)
152
- # By default, `parser` is used. For the `TargetRubyVersion` value, `parser` can be specified for versions `2.0` and above.
153
- # `parser_prism` can be specified for versions `3.3` and above. `parser_prism` is faster but still considered experimental.
154
- ParserEngine: parser_whitequark
154
+ # Not every parser engine can handle every `TargetRubyVersion`. `parser_whitequark`
155
+ # only works with versions 3.4 and below, `parser_prism` with versions 3.3 and above.
156
+ ParserEngine: default
155
157
  # Determines if a notification for extension libraries should be shown when
156
158
  # rubocop is run. Keys are the name of the extension, and values are an array
157
159
  # of gems in the Gemfile that the extension is suggested for, if not already
@@ -1616,6 +1618,12 @@ Lint/AmbiguousRegexpLiteral:
1616
1618
  VersionAdded: '0.17'
1617
1619
  VersionChanged: '0.83'
1618
1620
 
1621
+ Lint/ArrayLiteralInRegexp:
1622
+ Description: 'Checks for an array literal interpolated inside a regexp.'
1623
+ Enabled: pending
1624
+ VersionAdded: '1.71'
1625
+ SafeAutoCorrect: false
1626
+
1619
1627
  Lint/AssignmentInCondition:
1620
1628
  Description: "Don't use assignment in conditions."
1621
1629
  StyleGuide: '#safe-assignment-in-condition'
@@ -1665,6 +1673,11 @@ Lint/ConstantOverwrittenInRescue:
1665
1673
  Enabled: pending
1666
1674
  VersionAdded: '1.31'
1667
1675
 
1676
+ Lint/ConstantReassignment:
1677
+ Description: 'Checks for constant reassignments.'
1678
+ Enabled: pending
1679
+ VersionAdded: '1.70'
1680
+
1668
1681
  Lint/ConstantResolution:
1669
1682
  Description: 'Check that constants are fully qualified with `::`.'
1670
1683
  Enabled: false
@@ -1674,6 +1687,11 @@ Lint/ConstantResolution:
1674
1687
  # Restrict this cop from only looking at certain names
1675
1688
  Ignore: []
1676
1689
 
1690
+ Lint/CopDirectiveSyntax:
1691
+ Description: 'Checks that `# rubocop:` directives are strictly formatted.'
1692
+ Enabled: pending
1693
+ VersionAdded: '1.72'
1694
+
1677
1695
  Lint/Debugger:
1678
1696
  Description: 'Check for debugger calls.'
1679
1697
  Enabled: true
@@ -1871,10 +1889,9 @@ Lint/EmptyConditionalBody:
1871
1889
  Description: 'Checks for the presence of `if`, `elsif` and `unless` branches without a body.'
1872
1890
  Enabled: true
1873
1891
  AutoCorrect: contextual
1874
- SafeAutoCorrect: false
1875
1892
  AllowComments: true
1876
1893
  VersionAdded: '0.89'
1877
- VersionChanged: '1.61'
1894
+ VersionChanged: '1.73'
1878
1895
 
1879
1896
  Lint/EmptyEnsure:
1880
1897
  Description: 'Checks for empty ensure block.'
@@ -2030,6 +2047,7 @@ Lint/LambdaWithoutLiteralBlock:
2030
2047
  Lint/LiteralAsCondition:
2031
2048
  Description: 'Checks of literals used in conditions.'
2032
2049
  Enabled: true
2050
+ AutoCorrect: contextual
2033
2051
  VersionAdded: '0.51'
2034
2052
 
2035
2053
  Lint/LiteralAssignmentInCondition:
@@ -2243,9 +2261,8 @@ Lint/RedundantRegexpQuantifiers:
2243
2261
  Lint/RedundantRequireStatement:
2244
2262
  Description: 'Checks for unnecessary `require` statement.'
2245
2263
  Enabled: true
2246
- SafeAutoCorrect: false
2247
2264
  VersionAdded: '0.76'
2248
- VersionChanged: '1.57'
2265
+ VersionChanged: '1.73'
2249
2266
 
2250
2267
  Lint/RedundantSafeNavigation:
2251
2268
  Description: 'Checks for redundant safe navigation calls.'
@@ -2274,6 +2291,11 @@ Lint/RedundantStringCoercion:
2274
2291
  VersionAdded: '0.19'
2275
2292
  VersionChanged: '0.77'
2276
2293
 
2294
+ Lint/RedundantTypeConversion:
2295
+ Description: 'Checks for redundantly converting a literal to the same type.'
2296
+ Enabled: pending
2297
+ VersionAdded: '1.72'
2298
+
2277
2299
  Lint/RedundantWithIndex:
2278
2300
  Description: 'Checks for redundant `with_index`.'
2279
2301
  Enabled: true
@@ -2402,6 +2424,12 @@ Lint/ShadowingOuterLocalVariable:
2402
2424
  Enabled: true
2403
2425
  VersionAdded: '0.9'
2404
2426
 
2427
+ Lint/SharedMutableDefault:
2428
+ Description: 'Checks for mutable literals used as default arguments during Hash initialization.'
2429
+ StyleGuide: '#no-mutable-defaults'
2430
+ Enabled: pending
2431
+ VersionAdded: '1.70'
2432
+
2405
2433
  Lint/StructNewOverride:
2406
2434
  Description: 'Disallow overriding the `Struct` built-in methods via `Struct.new`.'
2407
2435
  Enabled: true
@@ -2416,6 +2444,12 @@ Lint/SuppressedException:
2416
2444
  VersionAdded: '0.9'
2417
2445
  VersionChanged: '1.12'
2418
2446
 
2447
+ Lint/SuppressedExceptionInNumberConversion:
2448
+ Description: 'Checks for cases where exceptions unrelated to the numeric constructors may be unintentionally swallowed.'
2449
+ Enabled: pending
2450
+ SafeAutoCorrect: false
2451
+ VersionAdded: '1.72'
2452
+
2419
2453
  Lint/SymbolConversion:
2420
2454
  Description: 'Checks for unnecessary symbol conversions.'
2421
2455
  Enabled: pending
@@ -2571,6 +2605,11 @@ Lint/UselessAssignment:
2571
2605
  VersionAdded: '0.11'
2572
2606
  VersionChanged: '1.66'
2573
2607
 
2608
+ Lint/UselessConstantScoping:
2609
+ Description: 'Checks for useless constant scoping.'
2610
+ Enabled: pending
2611
+ VersionAdded: '1.72'
2612
+
2574
2613
  Lint/UselessDefined:
2575
2614
  Description: 'Checks for calls to `defined?` with strings and symbols. The result of such a call will always be truthy.'
2576
2615
  Enabled: pending
@@ -2958,6 +2997,7 @@ Naming/MethodName:
2958
2997
  StyleGuide: '#snake-case-symbols-methods-vars'
2959
2998
  Enabled: true
2960
2999
  VersionAdded: '0.50'
3000
+ VersionChanged: '1.75'
2961
3001
  EnforcedStyle: snake_case
2962
3002
  SupportedStyles:
2963
3003
  - snake_case
@@ -2969,6 +3009,10 @@ Naming/MethodName:
2969
3009
  # - '\A\s*onSelectionCleared\s*'
2970
3010
  #
2971
3011
  AllowedPatterns: []
3012
+ ForbiddenIdentifiers:
3013
+ - __id__
3014
+ - __send__
3015
+ ForbiddenPatterns: []
2972
3016
 
2973
3017
  Naming/MethodParameterName:
2974
3018
  Description: >-
@@ -3005,17 +3049,19 @@ Naming/PredicateName:
3005
3049
  StyleGuide: '#bool-methods-qmark'
3006
3050
  Enabled: true
3007
3051
  VersionAdded: '0.50'
3008
- VersionChanged: '0.77'
3052
+ VersionChanged: '1.75'
3009
3053
  # Predicate name prefixes.
3010
3054
  NamePrefix:
3011
3055
  - is_
3012
3056
  - has_
3013
3057
  - have_
3058
+ - does_
3014
3059
  # Predicate name prefixes that should be removed.
3015
3060
  ForbiddenPrefixes:
3016
3061
  - is_
3017
3062
  - has_
3018
3063
  - have_
3064
+ - does_
3019
3065
  # Predicate names which, despite having a forbidden prefix, or no `?`,
3020
3066
  # should still be accepted
3021
3067
  AllowedMethods:
@@ -3024,6 +3070,8 @@ Naming/PredicateName:
3024
3070
  MethodDefinitionMacros:
3025
3071
  - define_method
3026
3072
  - define_singleton_method
3073
+ # Use Sorbet's T::Boolean return type to detect predicate methods.
3074
+ UseSorbetSigs: false
3027
3075
  # Exclude Rspec specs because there is a strong convention to write spec
3028
3076
  # helpers in the form of `have_something` or `be_something`.
3029
3077
  Exclude:
@@ -3041,13 +3089,15 @@ Naming/VariableName:
3041
3089
  StyleGuide: '#snake-case-symbols-methods-vars'
3042
3090
  Enabled: true
3043
3091
  VersionAdded: '0.50'
3044
- VersionChanged: '1.8'
3092
+ VersionChanged: '1.73'
3045
3093
  EnforcedStyle: snake_case
3046
3094
  SupportedStyles:
3047
3095
  - snake_case
3048
3096
  - camelCase
3049
3097
  AllowedIdentifiers: []
3050
3098
  AllowedPatterns: []
3099
+ ForbiddenIdentifiers: []
3100
+ ForbiddenPatterns: []
3051
3101
 
3052
3102
  Naming/VariableNumber:
3053
3103
  Description: 'Use the configured style when numbering symbols, methods and variables.'
@@ -3063,6 +3113,8 @@ Naming/VariableNumber:
3063
3113
  CheckMethodNames: true
3064
3114
  CheckSymbols: true
3065
3115
  AllowedIdentifiers:
3116
+ - TLS1_1 # OpenSSL::SSL::TLS1_1_VERSION
3117
+ - TLS1_2 # OpenSSL::SSL::TLS1_2_VERSION
3066
3118
  - capture3 # Open3.capture3
3067
3119
  - iso8601 # Time#iso8601
3068
3120
  - rfc1123_date # CGI.rfc1123_date
@@ -3136,13 +3188,14 @@ Style/AccessModifierDeclarations:
3136
3188
  Description: 'Checks style of how access modifiers are used.'
3137
3189
  Enabled: true
3138
3190
  VersionAdded: '0.57'
3139
- VersionChanged: '0.81'
3191
+ VersionChanged: '1.70'
3140
3192
  EnforcedStyle: group
3141
3193
  SupportedStyles:
3142
3194
  - inline
3143
3195
  - group
3144
3196
  AllowModifiersOnSymbols: true
3145
3197
  AllowModifiersOnAttrs: true
3198
+ AllowModifiersOnAliasMethod: true
3146
3199
  SafeAutoCorrect: false
3147
3200
 
3148
3201
  Style/AccessorGrouping:
@@ -3457,6 +3510,7 @@ Style/ClassAndModuleChildren:
3457
3510
  SafeAutoCorrect: false
3458
3511
  Enabled: true
3459
3512
  VersionAdded: '0.19'
3513
+ VersionChanged: '1.74'
3460
3514
  #
3461
3515
  # Basically there are two different styles:
3462
3516
  #
@@ -3472,7 +3526,21 @@ Style/ClassAndModuleChildren:
3472
3526
  #
3473
3527
  # The compact style is only forced, for classes or modules with one child.
3474
3528
  EnforcedStyle: nested
3475
- SupportedStyles:
3529
+ SupportedStyles: &supported_styles
3530
+ - nested
3531
+ - compact
3532
+ # Configure classes separately, if desired. If not set, or set to `nil`,
3533
+ # the `EnforcedStyle` value will be used.
3534
+ EnforcedStyleForClasses: ~
3535
+ SupportedStylesForClasses:
3536
+ - ~
3537
+ - nested
3538
+ - compact
3539
+ # Configure modules separately, if desired. If not set, or set to `nil`,
3540
+ # the `EnforcedStyle` value will be used.
3541
+ EnforcedStyleForModules: ~
3542
+ SupportedStylesForModules:
3543
+ - ~
3476
3544
  - nested
3477
3545
  - compact
3478
3546
 
@@ -3625,6 +3693,12 @@ Style/CommentedKeyword:
3625
3693
  VersionAdded: '0.51'
3626
3694
  VersionChanged: '1.19'
3627
3695
 
3696
+ Style/ComparableBetween:
3697
+ Description: 'Enforces the use of `Comparable#between?` instead of logical comparison.'
3698
+ Enabled: pending
3699
+ VersionAdded: '1.74'
3700
+ StyleGuide: '#ranges-or-between'
3701
+
3628
3702
  Style/ComparableClamp:
3629
3703
  Description: 'Enforces the use of `Comparable#clamp` instead of comparison by minimum and maximum.'
3630
3704
  Enabled: pending
@@ -3881,6 +3955,8 @@ Style/EndlessMethod:
3881
3955
  - allow_single_line
3882
3956
  - allow_always
3883
3957
  - disallow
3958
+ - require_single_line
3959
+ - require_always
3884
3960
 
3885
3961
  Style/EnvHome:
3886
3962
  Description: "Checks for consistent usage of `ENV['HOME']`."
@@ -4025,8 +4101,14 @@ Style/FormatStringToken:
4025
4101
  # style token in a format string to be allowed when enforced style is not
4026
4102
  # `unannotated`.
4027
4103
  MaxUnannotatedPlaceholdersAllowed: 1
4104
+ # The mode the cop operates in. Two values are allowed:
4105
+ # * aggressive (default): all strings are considered
4106
+ # * conservative:
4107
+ # only register offenses for strings given to `printf`, `sprintf`,
4108
+ # format` and `%` methods. Other strings are not considered.
4109
+ Mode: aggressive
4028
4110
  VersionAdded: '0.49'
4029
- VersionChanged: '1.0'
4111
+ VersionChanged: '1.74'
4030
4112
  AllowedMethods: []
4031
4113
  AllowedPatterns: []
4032
4114
 
@@ -4051,6 +4133,9 @@ Style/FrozenStringLiteralComment:
4051
4133
  # exist in a file.
4052
4134
  - never
4053
4135
  SafeAutoCorrect: false
4136
+ Exclude:
4137
+ # Prevent the Ruby warning: `'frozen_string_literal' is ignored after any tokens` when using Active Admin.
4138
+ - '**/*.arb'
4054
4139
 
4055
4140
  Style/GlobalStdStream:
4056
4141
  Description: 'Enforces the use of `$stdout/$stderr/$stdin` instead of `STDOUT/STDERR/STDIN`.'
@@ -4119,6 +4204,12 @@ Style/HashExcept:
4119
4204
  VersionAdded: '1.7'
4120
4205
  VersionChanged: '1.39'
4121
4206
 
4207
+ Style/HashFetchChain:
4208
+ Description: 'Use `Hash#dig` instead of chained `fetch` calls.'
4209
+ Enabled: pending
4210
+ Safe: false
4211
+ VersionAdded: '1.75'
4212
+
4122
4213
  Style/HashLikeCase:
4123
4214
  Description: >-
4124
4215
  Checks for places where `case-when` represents a simple 1:1
@@ -4129,6 +4220,14 @@ Style/HashLikeCase:
4129
4220
  # to trigger this cop
4130
4221
  MinBranchesCount: 3
4131
4222
 
4223
+ Style/HashSlice:
4224
+ Description: >-
4225
+ Checks for usages of `Hash#reject`, `Hash#select`, and `Hash#filter` methods
4226
+ that can be replaced with `Hash#slice` method.
4227
+ Enabled: pending
4228
+ Safe: false
4229
+ VersionAdded: '1.71'
4230
+
4132
4231
  Style/HashSyntax:
4133
4232
  Description: >-
4134
4233
  Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
@@ -4316,6 +4415,21 @@ Style/IpAddresses:
4316
4415
  - '**/gems.rb'
4317
4416
  - '**/*.gemspec'
4318
4417
 
4418
+ Style/ItAssignment:
4419
+ Description: 'Checks for assignment to `it` inside a block.'
4420
+ Enabled: pending
4421
+ VersionAdded: '1.70'
4422
+
4423
+ Style/ItBlockParameter:
4424
+ Description: 'Checks for blocks with one argument where `it` block parameter can be used.'
4425
+ Enabled: pending
4426
+ EnforcedStyle: only_numbered_parameters
4427
+ SupportedStyles:
4428
+ - only_numbered_parameters
4429
+ - always
4430
+ - disallow
4431
+ VersionAdded: '1.75'
4432
+
4319
4433
  Style/KeywordArgumentsMerging:
4320
4434
  Description: >-
4321
4435
  When passing an existing hash as keyword arguments, provide additional arguments
@@ -4704,7 +4818,7 @@ Style/Next:
4704
4818
  StyleGuide: '#no-nested-conditionals'
4705
4819
  Enabled: true
4706
4820
  VersionAdded: '0.22'
4707
- VersionChanged: '0.35'
4821
+ VersionChanged: '1.75'
4708
4822
  # With `always` all conditions at the end of an iteration needs to be
4709
4823
  # replaced by next - with `skip_modifier_ifs` the modifier if like this one
4710
4824
  # are ignored: [1, 2].each { |a| return 'yes' if a == 1 }
@@ -4712,6 +4826,7 @@ Style/Next:
4712
4826
  # `MinBodyLength` defines the number of lines of the a body of an `if` or `unless`
4713
4827
  # needs to have to trigger this cop
4714
4828
  MinBodyLength: 3
4829
+ AllowConsecutiveConditionals: false
4715
4830
  SupportedStyles:
4716
4831
  - skip_modifier_ifs
4717
4832
  - always
@@ -5047,6 +5162,9 @@ Style/RedundantCondition:
5047
5162
  Description: 'Checks for unnecessary conditional expressions.'
5048
5163
  Enabled: true
5049
5164
  VersionAdded: '0.76'
5165
+ VersionChanged: '1.73'
5166
+ AllowedMethods:
5167
+ - nonzero?
5050
5168
 
5051
5169
  Style/RedundantConditional:
5052
5170
  Description: "Don't return true/false from a conditional."
@@ -5059,7 +5177,7 @@ Style/RedundantConstantBase:
5059
5177
  VersionAdded: '1.40'
5060
5178
 
5061
5179
  Style/RedundantCurrentDirectoryInPath:
5062
- Description: 'Checks for uses a redundant current directory in path.'
5180
+ Description: 'Checks for a redundant current directory in a path given to `require_relative`.'
5063
5181
  Enabled: pending
5064
5182
  VersionAdded: '1.53'
5065
5183
 
@@ -5111,6 +5229,13 @@ Style/RedundantFilterChain:
5111
5229
  VersionAdded: '1.52'
5112
5230
  VersionChanged: '1.57'
5113
5231
 
5232
+ Style/RedundantFormat:
5233
+ Description: 'Checks for usages of `Kernel#format` or `Kernel#sprintf` with only a single argument.'
5234
+ Enabled: pending
5235
+ SafeAutoCorrect: false
5236
+ VersionAdded: '1.72'
5237
+ VersionChanged: '1.72'
5238
+
5114
5239
  Style/RedundantFreeze:
5115
5240
  Description: "Checks usages of Object#freeze on immutable objects."
5116
5241
  Enabled: true
@@ -5637,14 +5762,17 @@ Style/TrailingCommaInArrayLiteral:
5637
5762
  StyleGuide: '#no-trailing-array-commas'
5638
5763
  Enabled: true
5639
5764
  VersionAdded: '0.53'
5640
- # If `comma`, the cop requires a comma after the last item in an array,
5641
- # but only when each item is on its own line.
5642
- # If `consistent_comma`, the cop requires a comma after the last item of all
5643
- # non-empty, multiline array literals.
5765
+ # If `comma`, the cop requires a comma after the last item in an array, but only when each item is
5766
+ # on its own line.
5767
+ # If `consistent_comma`, the cop requires a comma after the last item of all non-empty, multiline
5768
+ # array literals.
5769
+ # If `diff_comma`, the cop requires a comma after the last item of all non-empty, multiline array
5770
+ # literals, but only when that last item immediately precedes a newline.
5644
5771
  EnforcedStyleForMultiline: no_comma
5645
5772
  SupportedStylesForMultiline:
5646
5773
  - comma
5647
5774
  - consistent_comma
5775
+ - diff_comma
5648
5776
  - no_comma
5649
5777
 
5650
5778
  Style/TrailingCommaInBlockArgs:
@@ -5656,14 +5784,17 @@ Style/TrailingCommaInBlockArgs:
5656
5784
  Style/TrailingCommaInHashLiteral:
5657
5785
  Description: 'Checks for trailing comma in hash literals.'
5658
5786
  Enabled: true
5659
- # If `comma`, the cop requires a comma after the last item in a hash,
5660
- # but only when each item is on its own line.
5661
- # If `consistent_comma`, the cop requires a comma after the last item of all
5662
- # non-empty, multiline hash literals.
5787
+ # If `comma`, the cop requires a comma after the last item in a hash, but only when each item is
5788
+ # on its own line.
5789
+ # If `consistent_comma`, the cop requires a comma after the last item of all non-empty, multiline
5790
+ # hash literals.
5791
+ # If `diff_comma`, the cop requires a comma after the last item of all non-empty, multiline hash
5792
+ # literals, but only when that last item immediately precedes a newline.
5663
5793
  EnforcedStyleForMultiline: no_comma
5664
5794
  SupportedStylesForMultiline:
5665
5795
  - comma
5666
5796
  - consistent_comma
5797
+ - diff_comma
5667
5798
  - no_comma
5668
5799
  VersionAdded: '0.53'
5669
5800
 
@@ -6,6 +6,26 @@ InternalAffairs/CopDescription:
6
6
  Include:
7
7
  - 'lib/rubocop/cop/**/*.rb'
8
8
 
9
+ InternalAffairs/ExampleHeredocDelimiter:
10
+ Include:
11
+ - 'spec/rubocop/cop/**/*.rb'
12
+
13
+ InternalAffairs/ExampleDescription:
14
+ Include:
15
+ - 'spec/rubocop/cop/**/*.rb'
16
+
17
+ InternalAffairs/NodeTypeGroup:
18
+ Include:
19
+ - 'lib/rubocop/cop/**/*.rb'
20
+
21
+ InternalAffairs/OnSendWithoutOnCSend:
22
+ Include:
23
+ - 'lib/rubocop/cop/**/*.rb'
24
+
25
+ InternalAffairs/UndefinedConfig:
26
+ Include:
27
+ - 'lib/rubocop/cop/**/*.rb'
28
+
9
29
  InternalAffairs/UselessMessageAssertion:
10
30
  Include:
11
31
  - '**/*_spec.rb'
@@ -43,7 +43,9 @@ renamed:
43
43
  Style/MethodCallParentheses: Style/MethodCallWithoutArgsParentheses
44
44
  Style/MethodName: Naming/MethodName
45
45
  Style/OpMethod: Naming/BinaryOperatorParameterName
46
- Style/PredicateName: Naming/PredicateName
46
+ Style/PredicateName:
47
+ new_name: Naming/PredicateName
48
+ severity: warning
47
49
  Style/SingleSpaceBeforeFirstArg: Layout/SpaceBeforeFirstArg
48
50
  Style/UnneededCapitalW: Style/RedundantCapitalW
49
51
  Style/UnneededCondition: Style/RedundantCondition
@@ -71,11 +71,11 @@ module RuboCop
71
71
 
72
72
  warn Rainbow("\n#{pluralize(errors.size, 'error')} occurred:").red
73
73
 
74
- errors.each { |error| warn error }
74
+ errors.each { |error| warn Rainbow(error).red }
75
75
 
76
- warn <<~WARNING
76
+ warn Rainbow(<<~WARNING.strip).yellow
77
77
  Errors are usually caused by RuboCop bugs.
78
- Please, report your problems to RuboCop's issue tracker.
78
+ Please, update to the latest RuboCop version if not already in use, and report a bug if the issue still occurs on this version.
79
79
  #{bug_tracker_uri}
80
80
  Mention the following information in the issue report:
81
81
  #{RuboCop::Version.verbose}
@@ -9,11 +9,31 @@ module RuboCop
9
9
  class ShowCops < Base
10
10
  self.command_name = :show_cops
11
11
 
12
+ ExactMatcher = Struct.new(:pattern) do
13
+ def match?(name)
14
+ name == pattern
15
+ end
16
+ end
17
+
18
+ WildcardMatcher = Struct.new(:pattern) do
19
+ def match?(name)
20
+ File.fnmatch(pattern, name, File::FNM_PATHNAME)
21
+ end
22
+ end
23
+
12
24
  def initialize(env)
13
25
  super
14
26
 
15
27
  # Load the configs so the require()s are done for custom cops
16
28
  @config = @config_store.for(Dir.pwd)
29
+
30
+ @cop_matchers = @options[:show_cops].map do |pattern|
31
+ if pattern.include?('*')
32
+ WildcardMatcher.new(pattern)
33
+ else
34
+ ExactMatcher.new(pattern)
35
+ end
36
+ end
17
37
  end
18
38
 
19
39
  def run
@@ -24,7 +44,7 @@ module RuboCop
24
44
 
25
45
  def print_available_cops
26
46
  registry = Cop::Registry.global
27
- show_all = @options[:show_cops].empty?
47
+ show_all = @cop_matchers.empty?
28
48
 
29
49
  puts "# Available cops (#{registry.length}) + config for #{Dir.pwd}: " if show_all
30
50
 
@@ -56,7 +76,9 @@ module RuboCop
56
76
 
57
77
  def selected_cops_of_department(cops, department)
58
78
  cops_of_department(cops, department).select do |cop|
59
- @options[:show_cops].include?(cop.cop_name)
79
+ @cop_matchers.any? do |matcher|
80
+ matcher.match?(cop.cop_name)
81
+ end
60
82
  end
61
83
  end
62
84
 
@@ -97,7 +97,13 @@ module RuboCop
97
97
  end
98
98
 
99
99
  def loaded_extensions
100
- @config_store.for_pwd.loaded_features.to_a
100
+ rubocop_config = @config_store.for_pwd
101
+
102
+ plugin_names = rubocop_config.loaded_plugins.map do |plugin|
103
+ plugin.about.name
104
+ end
105
+
106
+ plugin_names + rubocop_config.loaded_features.to_a
101
107
  end
102
108
 
103
109
  def installed_and_not_loaded_extensions
data/lib/rubocop/cli.rb CHANGED
@@ -52,7 +52,7 @@ module RuboCop
52
52
  end
53
53
  end
54
54
  rescue ConfigNotFoundError, IncorrectCopNameError, OptionArgumentError => e
55
- warn e.message
55
+ warn Rainbow(e.message).red
56
56
  STATUS_ERROR
57
57
  rescue RuboCop::Error => e
58
58
  warn Rainbow("Error: #{e.message}").red
@@ -87,7 +87,7 @@ module RuboCop
87
87
  next unless directive.enabled?
88
88
  next if directive.all_cops?
89
89
 
90
- cops.merge(directive.cop_names)
90
+ cops.merge(directive.raw_cop_names)
91
91
  end
92
92
  cops
93
93
  end
@@ -205,7 +205,7 @@ module RuboCop
205
205
  directive.cop_names.each do |name|
206
206
  if directive.disabled?
207
207
  names[name] += 1
208
- elsif (names[name]).positive?
208
+ elsif names[name].positive?
209
209
  names[name] -= 1
210
210
  else
211
211
  extras[directive.comment] << name