rubocop 1.50.2 → 1.57.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (232) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -3
  3. data/config/default.yml +110 -14
  4. data/config/obsoletion.yml +5 -0
  5. data/lib/rubocop/cli/command/auto_generate_config.rb +10 -5
  6. data/lib/rubocop/cli/command/lsp.rb +19 -0
  7. data/lib/rubocop/cli.rb +4 -1
  8. data/lib/rubocop/config.rb +4 -0
  9. data/lib/rubocop/config_finder.rb +2 -2
  10. data/lib/rubocop/config_loader_resolver.rb +4 -3
  11. data/lib/rubocop/config_obsoletion/parameter_rule.rb +9 -1
  12. data/lib/rubocop/config_obsoletion.rb +2 -2
  13. data/lib/rubocop/cop/autocorrect_logic.rb +3 -1
  14. data/lib/rubocop/cop/base.rb +6 -2
  15. data/lib/rubocop/cop/bundler/duplicated_gem.rb +1 -0
  16. data/lib/rubocop/cop/bundler/duplicated_group.rb +127 -0
  17. data/lib/rubocop/cop/bundler/gem_comment.rb +1 -1
  18. data/lib/rubocop/cop/bundler/gem_version.rb +2 -2
  19. data/lib/rubocop/cop/bundler/ordered_gems.rb +9 -1
  20. data/lib/rubocop/cop/correctors/alignment_corrector.rb +1 -1
  21. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +7 -4
  22. data/lib/rubocop/cop/gemspec/dependency_version.rb +2 -2
  23. data/lib/rubocop/cop/gemspec/development_dependencies.rb +1 -1
  24. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +9 -1
  25. data/lib/rubocop/cop/generator/require_file_injector.rb +1 -1
  26. data/lib/rubocop/cop/internal_affairs/cop_description.rb +32 -8
  27. data/lib/rubocop/cop/internal_affairs/example_description.rb +42 -21
  28. data/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +3 -1
  29. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +5 -5
  30. data/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +11 -2
  31. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +2 -0
  32. data/lib/rubocop/cop/layout/class_structure.rb +7 -0
  33. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +1 -2
  34. data/lib/rubocop/cop/layout/dot_position.rb +1 -5
  35. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +42 -9
  36. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +27 -4
  37. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +2 -0
  38. data/lib/rubocop/cop/layout/end_alignment.rb +7 -1
  39. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2 -2
  40. data/lib/rubocop/cop/layout/heredoc_indentation.rb +3 -0
  41. data/lib/rubocop/cop/layout/indentation_style.rb +1 -1
  42. data/lib/rubocop/cop/layout/indentation_width.rb +3 -3
  43. data/lib/rubocop/cop/layout/leading_comment_space.rb +1 -1
  44. data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +17 -9
  45. data/lib/rubocop/cop/layout/line_continuation_spacing.rb +1 -1
  46. data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +2 -0
  47. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +18 -3
  48. data/lib/rubocop/cop/layout/redundant_line_break.rb +14 -4
  49. data/lib/rubocop/cop/layout/space_after_comma.rb +9 -1
  50. data/lib/rubocop/cop/layout/space_after_not.rb +1 -1
  51. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +2 -2
  52. data/lib/rubocop/cop/layout/space_around_operators.rb +3 -1
  53. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +2 -0
  54. data/lib/rubocop/cop/layout/space_inside_parens.rb +1 -1
  55. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +1 -1
  56. data/lib/rubocop/cop/layout/trailing_empty_lines.rb +5 -0
  57. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +13 -1
  58. data/lib/rubocop/cop/lint/debugger.rb +18 -5
  59. data/lib/rubocop/cop/lint/duplicate_hash_key.rb +2 -1
  60. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +46 -19
  61. data/lib/rubocop/cop/lint/empty_block.rb +1 -1
  62. data/lib/rubocop/cop/lint/erb_new_arguments.rb +3 -4
  63. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +1 -1
  64. data/lib/rubocop/cop/lint/identity_comparison.rb +0 -1
  65. data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +5 -3
  66. data/lib/rubocop/cop/lint/inherit_exception.rb +9 -0
  67. data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +1 -1
  68. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +1 -1
  69. data/lib/rubocop/cop/lint/missing_super.rb +34 -5
  70. data/lib/rubocop/cop/lint/mixed_case_range.rb +111 -0
  71. data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +10 -7
  72. data/lib/rubocop/cop/lint/number_conversion.rb +5 -0
  73. data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +2 -2
  74. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -1
  75. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +2 -2
  76. data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +130 -0
  77. data/lib/rubocop/cop/lint/redundant_require_statement.rb +12 -3
  78. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +20 -4
  79. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +1 -1
  80. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +11 -4
  81. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +1 -2
  82. data/lib/rubocop/cop/lint/shadowed_exception.rb +5 -11
  83. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +7 -1
  84. data/lib/rubocop/cop/lint/struct_new_override.rb +12 -12
  85. data/lib/rubocop/cop/lint/suppressed_exception.rb +2 -2
  86. data/lib/rubocop/cop/lint/symbol_conversion.rb +1 -1
  87. data/lib/rubocop/cop/lint/to_enum_arguments.rb +5 -3
  88. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +23 -9
  89. data/lib/rubocop/cop/lint/useless_assignment.rb +94 -10
  90. data/lib/rubocop/cop/lint/void.rb +78 -10
  91. data/lib/rubocop/cop/metrics/block_length.rb +1 -1
  92. data/lib/rubocop/cop/metrics/class_length.rb +8 -3
  93. data/lib/rubocop/cop/metrics/method_length.rb +1 -1
  94. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +1 -2
  95. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +32 -4
  96. data/lib/rubocop/cop/migration/department_name.rb +2 -2
  97. data/lib/rubocop/cop/mixin/allowed_receivers.rb +34 -0
  98. data/lib/rubocop/cop/mixin/comments_help.rb +19 -11
  99. data/lib/rubocop/cop/mixin/def_node.rb +1 -1
  100. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -1
  101. data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +14 -11
  102. data/lib/rubocop/cop/mixin/heredoc.rb +6 -2
  103. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +3 -2
  104. data/lib/rubocop/cop/mixin/percent_literal.rb +1 -1
  105. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +5 -7
  106. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +1 -1
  107. data/lib/rubocop/cop/mixin/string_help.rb +4 -2
  108. data/lib/rubocop/cop/mixin/trailing_comma.rb +1 -1
  109. data/lib/rubocop/cop/naming/block_forwarding.rb +1 -1
  110. data/lib/rubocop/cop/naming/constant_name.rb +1 -1
  111. data/lib/rubocop/cop/naming/file_name.rb +1 -1
  112. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +3 -1
  113. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +25 -10
  114. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +11 -3
  115. data/lib/rubocop/cop/naming/variable_name.rb +6 -1
  116. data/lib/rubocop/cop/style/accessor_grouping.rb +5 -1
  117. data/lib/rubocop/cop/style/alias.rb +9 -8
  118. data/lib/rubocop/cop/style/arguments_forwarding.rb +280 -63
  119. data/lib/rubocop/cop/style/array_intersect.rb +13 -5
  120. data/lib/rubocop/cop/style/attr.rb +11 -1
  121. data/lib/rubocop/cop/style/begin_block.rb +1 -2
  122. data/lib/rubocop/cop/style/block_comments.rb +1 -1
  123. data/lib/rubocop/cop/style/block_delimiters.rb +5 -4
  124. data/lib/rubocop/cop/style/class_and_module_children.rb +1 -1
  125. data/lib/rubocop/cop/style/class_equality_comparison.rb +24 -39
  126. data/lib/rubocop/cop/style/collection_compact.rb +16 -6
  127. data/lib/rubocop/cop/style/collection_methods.rb +2 -0
  128. data/lib/rubocop/cop/style/colon_method_call.rb +2 -2
  129. data/lib/rubocop/cop/style/combinable_loops.rb +30 -8
  130. data/lib/rubocop/cop/style/concat_array_literals.rb +1 -1
  131. data/lib/rubocop/cop/style/conditional_assignment.rb +5 -3
  132. data/lib/rubocop/cop/style/copyright.rb +5 -2
  133. data/lib/rubocop/cop/style/dir.rb +1 -1
  134. data/lib/rubocop/cop/style/dir_empty.rb +8 -14
  135. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +1 -1
  136. data/lib/rubocop/cop/style/documentation.rb +1 -1
  137. data/lib/rubocop/cop/style/empty_case_condition.rb +6 -1
  138. data/lib/rubocop/cop/style/eval_with_location.rb +5 -5
  139. data/lib/rubocop/cop/style/exact_regexp_match.rb +68 -0
  140. data/lib/rubocop/cop/style/file_read.rb +2 -2
  141. data/lib/rubocop/cop/style/for.rb +1 -1
  142. data/lib/rubocop/cop/style/format_string.rb +24 -3
  143. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +3 -1
  144. data/lib/rubocop/cop/style/guard_clause.rb +28 -0
  145. data/lib/rubocop/cop/style/hash_conversion.rb +10 -0
  146. data/lib/rubocop/cop/style/hash_each_methods.rb +1 -22
  147. data/lib/rubocop/cop/style/hash_except.rb +19 -8
  148. data/lib/rubocop/cop/style/hash_transform_keys.rb +2 -2
  149. data/lib/rubocop/cop/style/hash_transform_values.rb +2 -2
  150. data/lib/rubocop/cop/style/identical_conditional_branches.rb +31 -5
  151. data/lib/rubocop/cop/style/if_inside_else.rb +6 -0
  152. data/lib/rubocop/cop/style/if_unless_modifier.rb +3 -0
  153. data/lib/rubocop/cop/style/if_with_semicolon.rb +2 -2
  154. data/lib/rubocop/cop/style/invertible_unless_condition.rb +10 -6
  155. data/lib/rubocop/cop/style/lambda.rb +3 -3
  156. data/lib/rubocop/cop/style/lambda_call.rb +5 -0
  157. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +11 -5
  158. data/lib/rubocop/cop/style/mixin_grouping.rb +1 -1
  159. data/lib/rubocop/cop/style/multiline_block_chain.rb +1 -1
  160. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +1 -1
  161. data/lib/rubocop/cop/style/multiple_comparison.rb +14 -0
  162. data/lib/rubocop/cop/style/nested_ternary_operator.rb +3 -11
  163. data/lib/rubocop/cop/style/numeric_literals.rb +1 -1
  164. data/lib/rubocop/cop/style/open_struct_use.rb +1 -1
  165. data/lib/rubocop/cop/style/operator_method_call.rb +6 -0
  166. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
  167. data/lib/rubocop/cop/style/preferred_hash_methods.rb +1 -1
  168. data/lib/rubocop/cop/style/redundant_argument.rb +6 -1
  169. data/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
  170. data/lib/rubocop/cop/style/redundant_begin.rb +10 -2
  171. data/lib/rubocop/cop/style/redundant_conditional.rb +2 -10
  172. data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +38 -0
  173. data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +93 -5
  174. data/lib/rubocop/cop/style/redundant_exception.rb +32 -12
  175. data/lib/rubocop/cop/style/redundant_filter_chain.rb +118 -0
  176. data/lib/rubocop/cop/style/redundant_line_continuation.rb +7 -3
  177. data/lib/rubocop/cop/style/redundant_parentheses.rb +42 -16
  178. data/lib/rubocop/cop/style/redundant_regexp_argument.rb +100 -0
  179. data/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
  180. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +2 -1
  181. data/lib/rubocop/cop/style/redundant_return.rb +7 -2
  182. data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +8 -1
  183. data/lib/rubocop/cop/style/redundant_sort.rb +1 -1
  184. data/lib/rubocop/cop/style/redundant_string_escape.rb +2 -0
  185. data/lib/rubocop/cop/style/regexp_literal.rb +11 -2
  186. data/lib/rubocop/cop/style/require_order.rb +11 -5
  187. data/lib/rubocop/cop/style/rescue_modifier.rb +1 -3
  188. data/lib/rubocop/cop/style/return_nil.rb +6 -2
  189. data/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +95 -0
  190. data/lib/rubocop/cop/style/select_by_regexp.rb +15 -5
  191. data/lib/rubocop/cop/style/semicolon.rb +12 -4
  192. data/lib/rubocop/cop/style/signal_exception.rb +1 -1
  193. data/lib/rubocop/cop/style/single_argument_dig.rb +2 -1
  194. data/lib/rubocop/cop/style/single_line_do_end_block.rb +67 -0
  195. data/lib/rubocop/cop/style/single_line_methods.rb +1 -1
  196. data/lib/rubocop/cop/style/sole_nested_conditional.rb +6 -2
  197. data/lib/rubocop/cop/style/special_global_vars.rb +3 -4
  198. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +30 -5
  199. data/lib/rubocop/cop/style/symbol_array.rb +35 -15
  200. data/lib/rubocop/cop/style/yaml_file_read.rb +66 -0
  201. data/lib/rubocop/cop/style/yoda_condition.rb +4 -2
  202. data/lib/rubocop/cop/style/yoda_expression.rb +8 -7
  203. data/lib/rubocop/cop/team.rb +1 -1
  204. data/lib/rubocop/cop/util.rb +1 -1
  205. data/lib/rubocop/cop/utils/regexp_ranges.rb +113 -0
  206. data/lib/rubocop/cop/variable_force/assignment.rb +45 -4
  207. data/lib/rubocop/cop/variable_force/variable_table.rb +2 -2
  208. data/lib/rubocop/cop/variable_force.rb +1 -0
  209. data/lib/rubocop/cops_documentation_generator.rb +1 -1
  210. data/lib/rubocop/ext/regexp_parser.rb +4 -1
  211. data/lib/rubocop/file_finder.rb +4 -7
  212. data/lib/rubocop/formatter/html_formatter.rb +4 -2
  213. data/lib/rubocop/formatter/junit_formatter.rb +1 -1
  214. data/lib/rubocop/lsp/logger.rb +22 -0
  215. data/lib/rubocop/lsp/routes.rb +246 -0
  216. data/lib/rubocop/lsp/runtime.rb +99 -0
  217. data/lib/rubocop/lsp/server.rb +68 -0
  218. data/lib/rubocop/lsp/severity.rb +27 -0
  219. data/lib/rubocop/magic_comment.rb +12 -10
  220. data/lib/rubocop/options.rb +11 -1
  221. data/lib/rubocop/result_cache.rb +5 -1
  222. data/lib/rubocop/rspec/cop_helper.rb +1 -1
  223. data/lib/rubocop/rspec/shared_contexts.rb +2 -3
  224. data/lib/rubocop/runner.rb +5 -3
  225. data/lib/rubocop/server/cache.rb +1 -0
  226. data/lib/rubocop/server/client_command/exec.rb +3 -2
  227. data/lib/rubocop/string_interpreter.rb +3 -3
  228. data/lib/rubocop/target_finder.rb +7 -3
  229. data/lib/rubocop/target_ruby.rb +12 -7
  230. data/lib/rubocop/version.rb +10 -6
  231. data/lib/rubocop.rb +15 -0
  232. metadata +45 -11
@@ -9,8 +9,8 @@ module RuboCop
9
9
  # @safety
10
10
  # It is unsafe by default because false positives may occur in the
11
11
  # `nil` check of block arguments to the receiver object. Additionally,
12
- # we can't know the type of the receiver object for sure, which may
13
- # result in false positives as well.
12
+ # we can't know the type of the receiver object for sure, which may
13
+ # result in false positives as well.
14
14
  #
15
15
  # For example, `[[1, 2], [3, nil]].reject { |first, second| second.nil? }`
16
16
  # and `[[1, 2], [3, nil]].compact` are not compatible. This will work fine
@@ -19,7 +19,9 @@ module RuboCop
19
19
  # @example
20
20
  # # bad
21
21
  # array.reject(&:nil?)
22
+ # array.delete_if(&:nil?)
22
23
  # array.reject { |e| e.nil? }
24
+ # array.delete_if { |e| e.nil? }
23
25
  # array.select { |e| !e.nil? }
24
26
  #
25
27
  # # good
@@ -33,20 +35,25 @@ module RuboCop
33
35
  # # good
34
36
  # hash.compact!
35
37
  #
38
+ # @example AllowedReceivers: ['params']
39
+ # # good
40
+ # params.reject(&:nil?)
41
+ #
36
42
  class CollectionCompact < Base
43
+ include AllowedReceivers
37
44
  include RangeHelp
38
45
  extend AutoCorrector
39
46
  extend TargetRubyVersion
40
47
 
41
48
  MSG = 'Use `%<good>s` instead of `%<bad>s`.'
42
- RESTRICT_ON_SEND = %i[reject reject! select select!].freeze
49
+ RESTRICT_ON_SEND = %i[reject delete_if reject! select select!].freeze
43
50
  TO_ENUM_METHODS = %i[to_enum lazy].freeze
44
51
 
45
52
  minimum_target_ruby_version 2.4
46
53
 
47
54
  # @!method reject_method_with_block_pass?(node)
48
55
  def_node_matcher :reject_method_with_block_pass?, <<~PATTERN
49
- (send !nil? {:reject :reject!}
56
+ (send !nil? {:reject :delete_if :reject!}
50
57
  (block_pass
51
58
  (sym :nil?)))
52
59
  PATTERN
@@ -55,7 +62,7 @@ module RuboCop
55
62
  def_node_matcher :reject_method?, <<~PATTERN
56
63
  (block
57
64
  (send
58
- !nil? {:reject :reject!})
65
+ !nil? {:reject :delete_if :reject!})
59
66
  $(args ...)
60
67
  (send
61
68
  $(lvar _) :nil?))
@@ -74,7 +81,10 @@ module RuboCop
74
81
 
75
82
  def on_send(node)
76
83
  return unless (range = offense_range(node))
77
- return if target_ruby_version <= 3.0 && to_enum_method?(node)
84
+ return if allowed_receiver?(node.receiver)
85
+ if (target_ruby_version <= 3.0 || node.method?(:delete_if)) && to_enum_method?(node)
86
+ return
87
+ end
78
88
 
79
89
  good = good_method_name(node)
80
90
  message = format(MSG, good: good, bad: range.source)
@@ -25,6 +25,7 @@ module RuboCop
25
25
  # # bad
26
26
  # items.collect
27
27
  # items.collect!
28
+ # items.collect_concat
28
29
  # items.inject
29
30
  # items.detect
30
31
  # items.find_all
@@ -33,6 +34,7 @@ module RuboCop
33
34
  # # good
34
35
  # items.map
35
36
  # items.map!
37
+ # items.flat_map
36
38
  # items.reduce
37
39
  # items.find
38
40
  # items.select
@@ -3,8 +3,8 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # Checks for methods invoked via the :: operator instead
7
- # of the . operator (like FileUtils::rmdir instead of FileUtils.rmdir).
6
+ # Checks for methods invoked via the `::` operator instead
7
+ # of the `.` operator (like `FileUtils::rmdir` instead of `FileUtils.rmdir`).
8
8
  #
9
9
  # @example
10
10
  # # bad
@@ -57,38 +57,60 @@ module RuboCop
57
57
  # end
58
58
  #
59
59
  class CombinableLoops < Base
60
+ extend AutoCorrector
61
+
62
+ include RangeHelp
63
+
60
64
  MSG = 'Combine this loop with the previous loop.'
61
65
 
62
66
  def on_block(node)
63
67
  return unless node.parent&.begin_type?
64
68
  return unless collection_looping_method?(node)
69
+ return unless same_collection_looping_block?(node, node.left_sibling)
70
+ return unless node.body && node.left_sibling.body
65
71
 
66
- add_offense(node) if same_collection_looping?(node, node.left_sibling)
72
+ add_offense(node) do |corrector|
73
+ combine_with_left_sibling(corrector, node)
74
+ end
67
75
  end
68
76
 
69
77
  alias on_numblock on_block
70
78
 
71
79
  def on_for(node)
72
80
  return unless node.parent&.begin_type?
81
+ return unless same_collection_looping_for?(node, node.left_sibling)
73
82
 
74
- sibling = node.left_sibling
75
- add_offense(node) if sibling&.for_type? && node.collection == sibling.collection
83
+ add_offense(node) do |corrector|
84
+ combine_with_left_sibling(corrector, node)
85
+ end
76
86
  end
77
87
 
78
88
  private
79
89
 
80
90
  def collection_looping_method?(node)
81
- # TODO: Remove `Symbol#to_s` after supporting only Ruby >= 2.7.
82
- method_name = node.method_name.to_s
91
+ method_name = node.method_name
83
92
  method_name.start_with?('each') || method_name.end_with?('_each')
84
93
  end
85
94
 
86
- def same_collection_looping?(node, sibling)
87
- (sibling&.block_type? || sibling&.numblock_type?) &&
88
- sibling.send_node.method?(node.method_name) &&
95
+ def same_collection_looping_block?(node, sibling)
96
+ return false if sibling.nil? || (!sibling.block_type? && !sibling.numblock_type?)
97
+
98
+ sibling.method?(node.method_name) &&
89
99
  sibling.receiver == node.receiver &&
90
100
  sibling.send_node.arguments == node.send_node.arguments
91
101
  end
102
+
103
+ def same_collection_looping_for?(node, sibling)
104
+ sibling&.for_type? && node.collection == sibling.collection
105
+ end
106
+
107
+ def combine_with_left_sibling(corrector, node)
108
+ corrector.replace(
109
+ node.left_sibling.body,
110
+ "#{node.left_sibling.body.source}\n#{node.body.source}"
111
+ )
112
+ corrector.remove(range_with_surrounding_space(range: node.source_range, side: :left))
113
+ end
92
114
  end
93
115
  end
94
116
  end
@@ -74,7 +74,7 @@ module RuboCop
74
74
  new_arguments =
75
75
  node.arguments.map do |arg|
76
76
  if arg.percent_literal?
77
- arg.children.map(&:value).map(&:inspect)
77
+ arg.children.map { |child| child.value.inspect }
78
78
  else
79
79
  arg.children.map(&:source)
80
80
  end
@@ -350,7 +350,7 @@ module RuboCop
350
350
  end
351
351
 
352
352
  def ternary_condition?(node)
353
- [node, node.children.first].any? { |n| n.if_type? && n.ternary? }
353
+ [node, node.children.first].compact.any? { |n| n.if_type? && n.ternary? }
354
354
  end
355
355
 
356
356
  def lhs_all_match?(branches)
@@ -361,7 +361,7 @@ module RuboCop
361
361
  end
362
362
 
363
363
  def assignment_types_match?(*nodes)
364
- return unless assignment_type?(nodes.first)
364
+ return false unless assignment_type?(nodes.first)
365
365
 
366
366
  nodes.map(&:type).uniq.one?
367
367
  end
@@ -386,7 +386,7 @@ module RuboCop
386
386
  def allowed_statements?(branches)
387
387
  return false unless branches.all?
388
388
 
389
- statements = branches.map { |branch| tail(branch) }.compact
389
+ statements = branches.filter_map { |branch| tail(branch) }
390
390
 
391
391
  lhs_all_match?(statements) && statements.none?(&:masgn_type?) &&
392
392
  assignment_types_match?(*statements)
@@ -440,6 +440,8 @@ module RuboCop
440
440
  module ConditionalCorrectorHelper
441
441
  def remove_whitespace_in_branches(corrector, branch, condition, column)
442
442
  branch.each_node do |child|
443
+ next if child.source_range.nil?
444
+
443
445
  white_space = white_space_range(child, column)
444
446
  corrector.remove(white_space) if white_space.source.strip.empty?
445
447
  end
@@ -8,8 +8,11 @@ module RuboCop
8
8
  # The default regexp for an acceptable copyright notice can be found in
9
9
  # config/default.yml. The default can be changed as follows:
10
10
  #
11
- # Style/Copyright:
12
- # Notice: '^Copyright (\(c\) )?2\d{3} Acme Inc'
11
+ # [source,yaml]
12
+ # ----
13
+ # Style/Copyright:
14
+ # Notice: '^Copyright (\(c\) )?2\d{3} Acme Inc'
15
+ # ----
13
16
  #
14
17
  # This regex string is treated as an unanchored regex. For each file
15
18
  # that RuboCop scans, a comment that matches this regex must be found or
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Cop
5
5
  module Style
6
- # Checks for places where the `#__dir__` method can replace more
6
+ # Checks for places where the `#\_\_dir\_\_` method can replace more
7
7
  # complex constructs to retrieve a canonicalized absolute path to the
8
8
  # current file.
9
9
  #
@@ -19,18 +19,16 @@ module RuboCop
19
19
  extend AutoCorrector
20
20
  extend TargetRubyVersion
21
21
 
22
- MSG = 'Use `Dir.empty?(%<arg>s)` instead.'
23
- RESTRICT_ON_SEND = %i[== > empty? none?].freeze
22
+ MSG = 'Use `%<replacement>s` instead.'
23
+ RESTRICT_ON_SEND = %i[== != > empty? none?].freeze
24
24
 
25
25
  minimum_target_ruby_version 2.4
26
26
 
27
27
  # @!method offensive?(node)
28
28
  def_node_matcher :offensive?, <<~PATTERN
29
29
  {
30
- (send (send (send $(const {nil? cbase} :Dir) :entries $_) :size) {:== :>} (int 2))
31
- (send (send (send $(const {nil? cbase} :Dir) :children $_) :size) {:== :>} (int 0))
32
- (send (send (send (send $(const {nil? cbase} :Dir) :entries $_) :size) :!) {:== :>} (int 2))
33
- (send (send (send (send $(const {nil? cbase} :Dir) :children $_) :size) :!) {:== :>} (int 0))
30
+ (send (send (send $(const {nil? cbase} :Dir) :entries $_) :size) {:== :!= :>} (int 2))
31
+ (send (send (send $(const {nil? cbase} :Dir) :children $_) :size) {:== :!= :>} (int 0))
34
32
  (send (send $(const {nil? cbase} :Dir) :children $_) :empty?)
35
33
  (send (send $(const {nil? cbase} :Dir) :each_child $_) :none?)
36
34
  }
@@ -38,10 +36,9 @@ module RuboCop
38
36
 
39
37
  def on_send(node)
40
38
  offensive?(node) do |const_node, arg_node|
41
- add_offense(node, message: format(MSG, arg: arg_node.source)) do |corrector|
42
- bang(node)
43
- corrector.replace(node,
44
- "#{bang(node)}#{const_node.source}.empty?(#{arg_node.source})")
39
+ replacement = "#{bang(node)}#{const_node.source}.empty?(#{arg_node.source})"
40
+ add_offense(node, message: format(MSG, replacement: replacement)) do |corrector|
41
+ corrector.replace(node, replacement)
45
42
  end
46
43
  end
47
44
  end
@@ -49,10 +46,7 @@ module RuboCop
49
46
  private
50
47
 
51
48
  def bang(node)
52
- if (node.method?(:==) && node.child_nodes.first.method?(:!)) ||
53
- (node.method?(:>) && !node.child_nodes.first.method?(:!))
54
- '!'
55
- end
49
+ '!' if %i[!= >].include? node.method_name
56
50
  end
57
51
  end
58
52
  end
@@ -108,7 +108,7 @@ module RuboCop
108
108
  comments = heredoc_comment_blocks(arg_node.loc.heredoc_body.line_span)
109
109
  .concat(preceding_comment_blocks(arg_node.parent))
110
110
 
111
- return if comments.none?
111
+ return false if comments.none?
112
112
 
113
113
  regexp = comment_regexp(arg_node)
114
114
  comments.any?(regexp) || regexp.match?(comments.join)
@@ -10,7 +10,7 @@ module RuboCop
10
10
  # declarations.
11
11
  #
12
12
  # The documentation requirement is annulled if the class or module has
13
- # a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the
13
+ # a `#:nodoc:` comment next to it. Likewise, `#:nodoc: all` does the
14
14
  # same for all its children.
15
15
  #
16
16
  # @example
@@ -40,9 +40,13 @@ module RuboCop
40
40
  extend AutoCorrector
41
41
 
42
42
  MSG = 'Do not use empty `case` condition, instead use an `if` expression.'
43
+ NOT_SUPPORTED_PARENT_TYPES = %i[return break next send csend].freeze
43
44
 
45
+ # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
44
46
  def on_case(case_node)
45
- return if case_node.condition
47
+ if case_node.condition || NOT_SUPPORTED_PARENT_TYPES.include?(case_node.parent&.type)
48
+ return
49
+ end
46
50
 
47
51
  branch_bodies = [*case_node.when_branches.map(&:body), case_node.else_branch].compact
48
52
 
@@ -52,6 +56,7 @@ module RuboCop
52
56
 
53
57
  add_offense(case_node.loc.keyword) { |corrector| autocorrect(corrector, case_node) }
54
58
  end
59
+ # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
55
60
 
56
61
  private
57
62
 
@@ -4,12 +4,12 @@ module RuboCop
4
4
  module Cop
5
5
  module Style
6
6
  # Ensures that eval methods (`eval`, `instance_eval`, `class_eval`
7
- # and `module_eval`) are given filename and line number values (`__FILE__`
8
- # and `__LINE__`). This data is used to ensure that any errors raised
7
+ # and `module_eval`) are given filename and line number values (`\_\_FILE\_\_`
8
+ # and `\_\_LINE\_\_`). This data is used to ensure that any errors raised
9
9
  # within the evaluated code will be given the correct identification
10
10
  # in a backtrace.
11
11
  #
12
- # The cop also checks that the line number given relative to `__LINE__` is
12
+ # The cop also checks that the line number given relative to `\_\_LINE\_\_` is
13
13
  # correct.
14
14
  #
15
15
  # This cop will autocorrect incorrect or missing filename and line number
@@ -57,7 +57,7 @@ module RuboCop
57
57
  extend AutoCorrector
58
58
 
59
59
  MSG = 'Pass `__FILE__` and `__LINE__` to `%<method_name>s`.'
60
- MSG_EVAL = 'Pass a binding, `__FILE__` and `__LINE__` to `eval`.'
60
+ MSG_EVAL = 'Pass a binding, `__FILE__`, and `__LINE__` to `eval`.'
61
61
  MSG_INCORRECT_FILE = 'Incorrect file for `%<method_name>s`; ' \
62
62
  'use `%<expected>s` instead of `%<actual>s`.'
63
63
  MSG_INCORRECT_LINE = 'Incorrect line number for `%<method_name>s`; ' \
@@ -210,7 +210,7 @@ module RuboCop
210
210
  def add_offense_for_missing_line(node, code)
211
211
  register_offense(node) do |corrector|
212
212
  line_str = missing_line(node, code)
213
- corrector.insert_after(node.source_range.end, ", #{line_str}")
213
+ corrector.insert_after(node.last_argument.source_range.end, ", #{line_str}")
214
214
  end
215
215
  end
216
216
 
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # Checks for exact regexp match inside Regexp literals.
7
+ #
8
+ # @example
9
+ #
10
+ # # bad
11
+ # string =~ /\Astring\z/
12
+ # string === /\Astring\z/
13
+ # string.match(/\Astring\z/)
14
+ # string.match?(/\Astring\z/)
15
+ #
16
+ # # good
17
+ # string == 'string'
18
+ #
19
+ # # bad
20
+ # string !~ /\Astring\z/
21
+ #
22
+ # # good
23
+ # string != 'string'
24
+ #
25
+ class ExactRegexpMatch < Base
26
+ extend AutoCorrector
27
+
28
+ MSG = 'Use `%<prefer>s`.'
29
+ RESTRICT_ON_SEND = %i[=~ === !~ match match?].freeze
30
+
31
+ # @!method exact_regexp_match(node)
32
+ def_node_matcher :exact_regexp_match, <<~PATTERN
33
+ (send
34
+ _ {:=~ :=== :!~ :match :match?}
35
+ (regexp
36
+ (str $_)
37
+ (regopt)))
38
+ PATTERN
39
+
40
+ def on_send(node)
41
+ return unless (regexp = exact_regexp_match(node))
42
+
43
+ parsed_regexp = Regexp::Parser.parse(regexp)
44
+ return unless exact_match_pattern?(parsed_regexp)
45
+
46
+ prefer = "#{node.receiver.source} #{new_method(node)} '#{parsed_regexp[1].text}'"
47
+
48
+ add_offense(node, message: format(MSG, prefer: prefer)) do |corrector|
49
+ corrector.replace(node, prefer)
50
+ end
51
+ end
52
+
53
+ private
54
+
55
+ def exact_match_pattern?(parsed_regexp)
56
+ tokens = parsed_regexp.map(&:token)
57
+ return false unless tokens[0] == :bos && tokens[1] == :literal && tokens[2] == :eos
58
+
59
+ !parsed_regexp[1].quantifier
60
+ end
61
+
62
+ def new_method(node)
63
+ node.method?(:!~) ? '!=' : '=='
64
+ end
65
+ end
66
+ end
67
+ end
68
+ end
@@ -63,7 +63,7 @@ module RuboCop
63
63
 
64
64
  # @!method block_read?(node)
65
65
  def_node_matcher :block_read?, <<~PATTERN
66
- (block _ (args (arg $_)) (send (lvar $_) :read))
66
+ (block _ (args (arg _name)) (send (lvar _name) :read))
67
67
  PATTERN
68
68
 
69
69
  def on_send(node)
@@ -100,7 +100,7 @@ module RuboCop
100
100
  def file_open_read?(node)
101
101
  return true if send_read?(node)
102
102
 
103
- block_read?(node) { |block_arg, read_lvar| block_arg == read_lvar }
103
+ block_read?(node)
104
104
  end
105
105
 
106
106
  def read_method(mode)
@@ -80,7 +80,7 @@ module RuboCop
80
80
  private
81
81
 
82
82
  def suspect_enumerable?(node)
83
- node.multiline? && node.send_node.method?(:each) && !node.send_node.arguments?
83
+ node.multiline? && node.method?(:each) && !node.send_node.arguments?
84
84
  end
85
85
  end
86
86
  end
@@ -4,13 +4,25 @@ module RuboCop
4
4
  module Cop
5
5
  module Style
6
6
  # Enforces the use of a single string formatting utility.
7
- # Valid options include Kernel#format, Kernel#sprintf and String#%.
7
+ # Valid options include `Kernel#format`, `Kernel#sprintf`, and `String#%`.
8
8
  #
9
- # The detection of String#% cannot be implemented in a reliable
9
+ # The detection of `String#%` cannot be implemented in a reliable
10
10
  # manner for all cases, so only two scenarios are considered -
11
11
  # if the first argument is a string literal and if the second
12
12
  # argument is an array literal.
13
13
  #
14
+ # Autocorrection will be applied when using argument is a literal or known built-in conversion
15
+ # methods such as `to_d`, `to_f`, `to_h`, `to_i`, `to_r`, `to_s`, and `to_sym` on variables,
16
+ # provided that their return value is not an array. For example, when using `to_s`,
17
+ # `'%s' % [1, 2, 3].to_s` can be autocorrected without any incompatibility:
18
+ #
19
+ # [source,ruby]
20
+ # ----
21
+ # '%s' % [1, 2, 3] #=> '1'
22
+ # format('%s', [1, 2, 3]) #=> '[1, 2, 3]'
23
+ # '%s' % [1, 2, 3].to_s #=> '[1, 2, 3]'
24
+ # ----
25
+ #
14
26
  # @example EnforcedStyle: format (default)
15
27
  # # bad
16
28
  # puts sprintf('%10s', 'hoge')
@@ -42,6 +54,9 @@ module RuboCop
42
54
  MSG = 'Favor `%<prefer>s` over `%<current>s`.'
43
55
  RESTRICT_ON_SEND = %i[format sprintf %].freeze
44
56
 
57
+ # Known conversion methods whose return value is not an array.
58
+ AUTOCORRECTABLE_METHODS = %i[to_d to_f to_h to_i to_r to_s to_sym].freeze
59
+
45
60
  # @!method formatter(node)
46
61
  def_node_matcher :formatter, <<~PATTERN
47
62
  {
@@ -53,7 +68,7 @@ module RuboCop
53
68
 
54
69
  # @!method variable_argument?(node)
55
70
  def_node_matcher :variable_argument?, <<~PATTERN
56
- (send {str dstr} :% {send_type? lvar_type?})
71
+ (send {str dstr} :% #autocorrectable?)
57
72
  PATTERN
58
73
 
59
74
  def on_send(node)
@@ -70,6 +85,12 @@ module RuboCop
70
85
 
71
86
  private
72
87
 
88
+ def autocorrectable?(node)
89
+ return true if node.lvar_type?
90
+
91
+ node.send_type? && !AUTOCORRECTABLE_METHODS.include?(node.method_name)
92
+ end
93
+
73
94
  def message(detected_style)
74
95
  format(MSG, prefer: method_name(style), current: method_name(detected_style))
75
96
  end
@@ -142,7 +142,9 @@ module RuboCop
142
142
  end
143
143
 
144
144
  next_token = processed_source.tokens[token_number]
145
- token = next_token if Encoding::ENCODING_PATTERN.match?(next_token&.text)
145
+ if next_token&.text&.valid_encoding? && Encoding::ENCODING_PATTERN.match?(next_token.text)
146
+ token = next_token
147
+ end
146
148
 
147
149
  token
148
150
  end
@@ -55,6 +55,25 @@ module RuboCop
55
55
  # foo || raise('exception') if something
56
56
  # ok
57
57
  #
58
+ # # bad
59
+ # define_method(:test) do
60
+ # if something
61
+ # work
62
+ # end
63
+ # end
64
+ #
65
+ # # good
66
+ # define_method(:test) do
67
+ # return unless something
68
+ #
69
+ # work
70
+ # end
71
+ #
72
+ # # also good
73
+ # define_method(:test) do
74
+ # work if something
75
+ # end
76
+ #
58
77
  # @example AllowConsecutiveConditionals: false (default)
59
78
  # # bad
60
79
  # def test
@@ -110,6 +129,13 @@ module RuboCop
110
129
  end
111
130
  alias on_defs on_def
112
131
 
132
+ def on_block(node)
133
+ return unless node.method?(:define_method) || node.method?(:define_singleton_method)
134
+
135
+ on_def(node)
136
+ end
137
+ alias on_numblock on_block
138
+
113
139
  def on_if(node)
114
140
  return if accepted_form?(node)
115
141
 
@@ -187,6 +213,8 @@ module RuboCop
187
213
  if_branch = node.if_branch
188
214
  else_branch = node.else_branch
189
215
 
216
+ corrector.replace(node.loc.begin, "\n") if node.loc.begin&.is?('then')
217
+
190
218
  if if_branch&.send_type? && heredoc?(if_branch.last_argument)
191
219
  autocorrect_heredoc_argument(corrector, node, if_branch, else_branch, guard)
192
220
  elsif else_branch&.send_type? && heredoc?(else_branch.last_argument)
@@ -10,6 +10,16 @@ module RuboCop
10
10
  # `Hash[*ary]` can be replaced with `ary.each_slice(2).to_h` but it will be complicated.
11
11
  # So, `AllowSplatArgument` option is true by default to allow splat argument for simple code.
12
12
  #
13
+ # @safety
14
+ # This cop's autocorrection is unsafe because `ArgumentError` occurs
15
+ # if the number of elements is odd:
16
+ #
17
+ # [source,ruby]
18
+ # ----
19
+ # Hash[[[1, 2], [3]]] #=> {1=>2, 3=>nil}
20
+ # [[1, 2], [5]].to_h #=> wrong array length at 1 (expected 2, was 1) (ArgumentError)
21
+ # ----
22
+ #
13
23
  # @example
14
24
  # # bad
15
25
  # Hash[ary]
@@ -28,6 +28,7 @@ module RuboCop
28
28
  # execute(sql).keys.each { |v| p v }
29
29
  # execute(sql).values.each { |v| p v }
30
30
  class HashEachMethods < Base
31
+ include AllowedReceivers
31
32
  include Lint::UnusedArgument
32
33
  extend AutoCorrector
33
34
 
@@ -116,28 +117,6 @@ module RuboCop
116
117
  def kv_range(outer_node)
117
118
  outer_node.receiver.loc.selector.join(outer_node.loc.selector)
118
119
  end
119
-
120
- def allowed_receiver?(receiver)
121
- receiver_name = receiver_name(receiver)
122
-
123
- allowed_receivers.include?(receiver_name)
124
- end
125
-
126
- def receiver_name(receiver)
127
- if receiver.send_type?
128
- if receiver.receiver
129
- "#{receiver_name(receiver.receiver)}.#{receiver.method_name}"
130
- else
131
- receiver.method_name.to_s
132
- end
133
- else
134
- receiver.source
135
- end
136
- end
137
-
138
- def allowed_receivers
139
- cop_config.fetch('AllowedReceivers', [])
140
- end
141
120
  end
142
121
  end
143
122
  end