rubocop 0.85.0 → 0.88.0

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 (215) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -17
  3. data/bin/rubocop-profile +31 -0
  4. data/config/default.yml +132 -11
  5. data/lib/rubocop.rb +17 -1
  6. data/lib/rubocop/cli.rb +2 -4
  7. data/lib/rubocop/cli/command/auto_genenerate_config.rb +42 -7
  8. data/lib/rubocop/cli/command/init_dotfile.rb +1 -1
  9. data/lib/rubocop/cli/command/show_cops.rb +1 -1
  10. data/lib/rubocop/config.rb +1 -1
  11. data/lib/rubocop/config_loader.rb +39 -67
  12. data/lib/rubocop/config_loader_resolver.rb +1 -1
  13. data/lib/rubocop/config_obsoletion.rb +0 -1
  14. data/lib/rubocop/config_store.rb +4 -0
  15. data/lib/rubocop/cop/autocorrect_logic.rb +14 -24
  16. data/lib/rubocop/cop/badge.rb +1 -1
  17. data/lib/rubocop/cop/base.rb +407 -0
  18. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +10 -20
  19. data/lib/rubocop/cop/commissioner.rb +48 -50
  20. data/lib/rubocop/cop/cop.rb +91 -235
  21. data/lib/rubocop/cop/corrector.rb +38 -115
  22. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +26 -0
  23. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +7 -2
  24. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +1 -1
  25. data/lib/rubocop/cop/generator.rb +1 -1
  26. data/lib/rubocop/cop/generator/configuration_injector.rb +1 -1
  27. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +11 -14
  28. data/lib/rubocop/cop/layout/case_indentation.rb +18 -19
  29. data/lib/rubocop/cop/layout/class_structure.rb +2 -37
  30. data/lib/rubocop/cop/layout/comment_indentation.rb +3 -3
  31. data/lib/rubocop/cop/layout/empty_comment.rb +1 -1
  32. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +1 -0
  33. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +3 -8
  34. data/lib/rubocop/cop/layout/end_alignment.rb +3 -2
  35. data/lib/rubocop/cop/layout/end_of_line.rb +1 -1
  36. data/lib/rubocop/cop/layout/first_argument_indentation.rb +5 -1
  37. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +1 -1
  38. data/lib/rubocop/cop/layout/hash_alignment.rb +2 -3
  39. data/lib/rubocop/cop/layout/heredoc_indentation.rb +1 -1
  40. data/lib/rubocop/cop/layout/multiline_block_layout.rb +17 -7
  41. data/lib/rubocop/cop/layout/space_after_colon.rb +1 -1
  42. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +22 -27
  43. data/lib/rubocop/cop/layout/space_around_keyword.rb +2 -2
  44. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +27 -68
  45. data/lib/rubocop/cop/layout/space_around_operators.rb +1 -1
  46. data/lib/rubocop/cop/layout/space_before_block_braces.rb +14 -0
  47. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +4 -3
  48. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +1 -1
  49. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +2 -2
  50. data/lib/rubocop/cop/legacy/corrections_proxy.rb +49 -0
  51. data/lib/rubocop/cop/legacy/corrector.rb +29 -0
  52. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  53. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +4 -4
  54. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +8 -2
  55. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  56. data/lib/rubocop/cop/lint/duplicate_methods.rb +2 -2
  57. data/lib/rubocop/cop/lint/float_out_of_range.rb +1 -1
  58. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +38 -2
  59. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +3 -2
  60. data/lib/rubocop/cop/lint/interpolation_check.rb +13 -0
  61. data/lib/rubocop/cop/lint/literal_as_condition.rb +11 -1
  62. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +8 -1
  63. data/lib/rubocop/cop/lint/nested_method_definition.rb +14 -20
  64. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +69 -2
  65. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +8 -3
  66. data/lib/rubocop/cop/lint/percent_string_array.rb +1 -1
  67. data/lib/rubocop/cop/lint/percent_symbol_array.rb +1 -1
  68. data/lib/rubocop/cop/lint/raise_exception.rb +12 -4
  69. data/lib/rubocop/cop/lint/rand_one.rb +1 -1
  70. data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +31 -25
  71. data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +2 -2
  72. data/lib/rubocop/cop/lint/regexp_as_condition.rb +6 -0
  73. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +9 -1
  74. data/lib/rubocop/cop/lint/suppressed_exception.rb +1 -1
  75. data/lib/rubocop/cop/lint/syntax.rb +11 -26
  76. data/lib/rubocop/cop/lint/unused_method_argument.rb +1 -1
  77. data/lib/rubocop/cop/lint/useless_access_modifier.rb +1 -1
  78. data/lib/rubocop/cop/metrics/block_length.rb +22 -0
  79. data/lib/rubocop/cop/metrics/class_length.rb +25 -2
  80. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +35 -3
  81. data/lib/rubocop/cop/metrics/method_length.rb +23 -0
  82. data/lib/rubocop/cop/metrics/module_length.rb +25 -2
  83. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +1 -1
  84. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +129 -0
  85. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  86. data/lib/rubocop/cop/mixin/allowed_methods.rb +19 -0
  87. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  88. data/lib/rubocop/cop/mixin/code_length.rb +4 -0
  89. data/lib/rubocop/cop/mixin/configurable_formatting.rb +1 -1
  90. data/lib/rubocop/cop/mixin/configurable_naming.rb +1 -1
  91. data/lib/rubocop/cop/mixin/documentation_comment.rb +2 -2
  92. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -1
  93. data/lib/rubocop/cop/mixin/enforce_superclass.rb +3 -1
  94. data/lib/rubocop/cop/mixin/first_element_line_break.rb +1 -1
  95. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +1 -1
  96. data/lib/rubocop/cop/mixin/nil_methods.rb +3 -5
  97. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +6 -1
  98. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  99. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +1 -1
  100. data/lib/rubocop/cop/mixin/range_help.rb +1 -1
  101. data/lib/rubocop/cop/mixin/regexp_literal_help.rb +27 -0
  102. data/lib/rubocop/cop/mixin/statement_modifier.rb +3 -3
  103. data/lib/rubocop/cop/mixin/string_literals_help.rb +1 -1
  104. data/lib/rubocop/cop/mixin/surrounding_space.rb +10 -5
  105. data/lib/rubocop/cop/mixin/too_many_lines.rb +3 -13
  106. data/lib/rubocop/cop/mixin/trailing_comma.rb +1 -1
  107. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +6 -4
  108. data/lib/rubocop/cop/mixin/visibility_help.rb +50 -0
  109. data/lib/rubocop/cop/naming/ascii_identifiers.rb +27 -4
  110. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +3 -3
  111. data/lib/rubocop/cop/naming/file_name.rb +1 -3
  112. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +1 -1
  113. data/lib/rubocop/cop/naming/method_name.rb +1 -1
  114. data/lib/rubocop/cop/naming/method_parameter_name.rb +1 -1
  115. data/lib/rubocop/cop/naming/predicate_name.rb +3 -5
  116. data/lib/rubocop/cop/naming/variable_name.rb +1 -1
  117. data/lib/rubocop/cop/naming/variable_number.rb +1 -1
  118. data/lib/rubocop/cop/offense.rb +16 -2
  119. data/lib/rubocop/cop/registry.rb +62 -7
  120. data/lib/rubocop/cop/style/accessor_grouping.rb +147 -0
  121. data/lib/rubocop/cop/style/array_coercion.rb +63 -0
  122. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +3 -2
  123. data/lib/rubocop/cop/style/bare_percent_literals.rb +1 -1
  124. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +146 -0
  125. data/lib/rubocop/cop/style/block_delimiters.rb +2 -4
  126. data/lib/rubocop/cop/style/case_like_if.rb +217 -0
  127. data/lib/rubocop/cop/style/class_and_module_children.rb +1 -1
  128. data/lib/rubocop/cop/style/class_vars.rb +21 -0
  129. data/lib/rubocop/cop/style/command_literal.rb +1 -1
  130. data/lib/rubocop/cop/style/commented_keyword.rb +5 -2
  131. data/lib/rubocop/cop/style/conditional_assignment.rb +2 -2
  132. data/lib/rubocop/cop/style/copyright.rb +3 -3
  133. data/lib/rubocop/cop/style/date_time.rb +1 -1
  134. data/lib/rubocop/cop/style/dir.rb +2 -2
  135. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +1 -1
  136. data/lib/rubocop/cop/style/documentation.rb +2 -2
  137. data/lib/rubocop/cop/style/empty_case_condition.rb +8 -6
  138. data/lib/rubocop/cop/style/empty_literal.rb +5 -5
  139. data/lib/rubocop/cop/style/encoding.rb +1 -1
  140. data/lib/rubocop/cop/style/expand_path_arguments.rb +2 -2
  141. data/lib/rubocop/cop/style/exponential_notation.rb +8 -10
  142. data/lib/rubocop/cop/style/float_division.rb +7 -10
  143. data/lib/rubocop/cop/style/format_string_token.rb +5 -5
  144. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +1 -1
  145. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +62 -0
  146. data/lib/rubocop/cop/style/hash_like_case.rb +76 -0
  147. data/lib/rubocop/cop/style/identical_conditional_branches.rb +1 -1
  148. data/lib/rubocop/cop/style/if_inside_else.rb +1 -1
  149. data/lib/rubocop/cop/style/if_unless_modifier.rb +11 -11
  150. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +12 -0
  151. data/lib/rubocop/cop/style/inverse_methods.rb +1 -1
  152. data/lib/rubocop/cop/style/ip_addresses.rb +1 -1
  153. data/lib/rubocop/cop/style/missing_else.rb +1 -11
  154. data/lib/rubocop/cop/style/multiline_block_chain.rb +10 -1
  155. data/lib/rubocop/cop/style/multiline_if_then.rb +1 -1
  156. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +17 -6
  157. data/lib/rubocop/cop/style/mutable_constant.rb +4 -4
  158. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +2 -5
  159. data/lib/rubocop/cop/style/nested_ternary_operator.rb +27 -0
  160. data/lib/rubocop/cop/style/next.rb +2 -2
  161. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +2 -2
  162. data/lib/rubocop/cop/style/numeric_predicate.rb +3 -4
  163. data/lib/rubocop/cop/style/parallel_assignment.rb +3 -3
  164. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
  165. data/lib/rubocop/cop/style/proc.rb +1 -1
  166. data/lib/rubocop/cop/style/random_with_offset.rb +4 -10
  167. data/lib/rubocop/cop/style/redundant_assignment.rb +117 -0
  168. data/lib/rubocop/cop/style/redundant_conditional.rb +4 -3
  169. data/lib/rubocop/cop/style/redundant_exception.rb +14 -10
  170. data/lib/rubocop/cop/style/redundant_fetch_block.rb +122 -0
  171. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +50 -0
  172. data/lib/rubocop/cop/style/redundant_freeze.rb +1 -1
  173. data/lib/rubocop/cop/style/redundant_parentheses.rb +8 -2
  174. data/lib/rubocop/cop/style/redundant_percent_q.rb +2 -2
  175. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +4 -3
  176. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +14 -23
  177. data/lib/rubocop/cop/style/redundant_self.rb +6 -9
  178. data/lib/rubocop/cop/style/redundant_sort.rb +3 -2
  179. data/lib/rubocop/cop/style/rescue_standard_error.rb +1 -1
  180. data/lib/rubocop/cop/style/sample.rb +1 -1
  181. data/lib/rubocop/cop/style/semicolon.rb +1 -1
  182. data/lib/rubocop/cop/style/signal_exception.rb +1 -1
  183. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +3 -2
  184. data/lib/rubocop/cop/style/stderr_puts.rb +1 -1
  185. data/lib/rubocop/cop/style/struct_inheritance.rb +23 -2
  186. data/lib/rubocop/cop/style/symbol_array.rb +5 -5
  187. data/lib/rubocop/cop/style/symbol_proc.rb +1 -1
  188. data/lib/rubocop/cop/style/ternary_parentheses.rb +1 -1
  189. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +9 -32
  190. data/lib/rubocop/cop/style/trivial_accessors.rb +8 -7
  191. data/lib/rubocop/cop/style/word_array.rb +1 -1
  192. data/lib/rubocop/cop/style/yoda_condition.rb +18 -1
  193. data/lib/rubocop/cop/style/zero_length_predicate.rb +2 -2
  194. data/lib/rubocop/cop/team.rb +105 -81
  195. data/lib/rubocop/cop/util.rb +2 -2
  196. data/lib/rubocop/cop/utils/format_string.rb +19 -2
  197. data/lib/rubocop/cop/variable_force/variable.rb +5 -3
  198. data/lib/rubocop/file_finder.rb +12 -12
  199. data/lib/rubocop/formatter/disabled_config_formatter.rb +2 -2
  200. data/lib/rubocop/formatter/formatter_set.rb +1 -1
  201. data/lib/rubocop/name_similarity.rb +7 -3
  202. data/lib/rubocop/options.rb +15 -8
  203. data/lib/rubocop/path_util.rb +4 -19
  204. data/lib/rubocop/platform.rb +1 -1
  205. data/lib/rubocop/rake_task.rb +6 -9
  206. data/lib/rubocop/result_cache.rb +12 -8
  207. data/lib/rubocop/rspec/cop_helper.rb +4 -4
  208. data/lib/rubocop/rspec/expect_offense.rb +65 -21
  209. data/lib/rubocop/rspec/shared_contexts.rb +19 -16
  210. data/lib/rubocop/runner.rb +34 -33
  211. data/lib/rubocop/target_finder.rb +3 -3
  212. data/lib/rubocop/target_ruby.rb +2 -2
  213. data/lib/rubocop/version.rb +1 -1
  214. metadata +34 -9
  215. data/lib/rubocop/cop/mixin/classish_length.rb +0 -37
@@ -85,7 +85,7 @@ module RuboCop
85
85
  PATTERN
86
86
 
87
87
  def_node_matcher :rescue_standard_error?, <<~PATTERN
88
- (resbody $(array (const nil? :StandardError)) _ _)
88
+ (resbody $(array (const {nil? cbase} :StandardError)) _ _)
89
89
  PATTERN
90
90
 
91
91
  def on_resbody(node)
@@ -92,7 +92,7 @@ module RuboCop
92
92
  second.int_type? ? second.to_a.first : :unknown
93
93
  end
94
94
 
95
- def range_size(range_node)
95
+ def range_size(range_node) # rubocop:todo Metrics/CyclomaticComplexity
96
96
  vals = range_node.to_a
97
97
  return :unknown unless vals.all?(&:int_type?)
98
98
 
@@ -39,7 +39,7 @@ module RuboCop
39
39
  check_for_line_terminator_or_opener
40
40
  end
41
41
 
42
- def on_begin(node)
42
+ def on_begin(node) # rubocop:todo Metrics/CyclomaticComplexity
43
43
  return if cop_config['AllowAsExpressionSeparator']
44
44
 
45
45
  exprs = node.children
@@ -111,7 +111,7 @@ module RuboCop
111
111
  RAISE_MSG = 'Use `raise` instead of `fail` to ' \
112
112
  'rethrow exceptions.'
113
113
 
114
- def_node_matcher :kernel_call?, '(send (const nil? :Kernel) %1 ...)'
114
+ def_node_matcher :kernel_call?, '(send (const {nil? cbase} :Kernel) %1 ...)'
115
115
  def_node_search :custom_fail_methods,
116
116
  '{(def :fail ...) (defs _ :fail ...)}'
117
117
 
@@ -34,9 +34,10 @@ module RuboCop
34
34
  end
35
35
 
36
36
  def autocorrect(node)
37
- if style == :require_parentheses
37
+ case style
38
+ when :require_parentheses
38
39
  missing_parentheses_corrector(node)
39
- elsif style == :require_no_parentheses
40
+ when :require_no_parentheses
40
41
  unwanted_parentheses_corrector(node)
41
42
  end
42
43
  end
@@ -22,7 +22,7 @@ module RuboCop
22
22
 
23
23
  def_node_matcher :stderr_puts?, <<~PATTERN
24
24
  (send
25
- {(gvar #stderr_gvar?) (const nil? :STDERR)}
25
+ {(gvar #stderr_gvar?) (const {nil? cbase} :STDERR)}
26
26
  :puts $_
27
27
  ...)
28
28
  PATTERN
@@ -20,6 +20,8 @@ module RuboCop
20
20
  # end
21
21
  # end
22
22
  class StructInheritance < Cop
23
+ include RangeHelp
24
+
23
25
  MSG = "Don't extend an instance initialized by `Struct.new`. " \
24
26
  'Use a block to customize the struct.'
25
27
 
@@ -29,10 +31,29 @@ module RuboCop
29
31
  add_offense(node, location: node.parent_class.source_range)
30
32
  end
31
33
 
34
+ def autocorrect(node)
35
+ lambda do |corrector|
36
+ corrector.remove(range_with_surrounding_space(range: node.loc.keyword))
37
+ corrector.replace(node.loc.operator, '=')
38
+
39
+ correct_parent(node.parent_class, corrector)
40
+ end
41
+ end
42
+
32
43
  def_node_matcher :struct_constructor?, <<~PATTERN
33
- {(send (const nil? :Struct) :new ...)
34
- (block (send (const nil? :Struct) :new ...) ...)}
44
+ {(send (const {nil? cbase} :Struct) :new ...)
45
+ (block (send (const {nil? cbase} :Struct) :new ...) ...)}
35
46
  PATTERN
47
+
48
+ private
49
+
50
+ def correct_parent(parent, corrector)
51
+ if parent.block_type?
52
+ corrector.remove(range_with_surrounding_space(range: parent.loc.end, newlines: false))
53
+ else
54
+ corrector.insert_after(parent.loc.expression, ' do')
55
+ end
56
+ end
36
57
  end
37
58
  end
38
59
  end
@@ -65,7 +65,7 @@ module RuboCop
65
65
  def symbols_contain_spaces?(node)
66
66
  node.children.any? do |sym|
67
67
  content, = *sym
68
- content =~ / /
68
+ / /.match?(content)
69
69
  end
70
70
  end
71
71
 
@@ -104,12 +104,12 @@ module RuboCop
104
104
  )
105
105
 
106
106
  # method name
107
- string =~ /\A[a-zA-Z_]\w*[!?]?\z/ ||
107
+ /\A[a-zA-Z_]\w*[!?]?\z/.match?(string) ||
108
108
  # instance / class variable
109
- string =~ /\A@@?[a-zA-Z_]\w*\z/ ||
109
+ /\A@@?[a-zA-Z_]\w*\z/.match?(string) ||
110
110
  # global variable
111
- string =~ /\A\$[1-9]\d*\z/ ||
112
- string =~ /\A\$[a-zA-Z_]\w*\z/ ||
111
+ /\A\$[1-9]\d*\z/.match?(string) ||
112
+ /\A\$[a-zA-Z_]\w*\z/.match?(string) ||
113
113
  special_gvars.include?(string) ||
114
114
  redefinable_operators.include?(string)
115
115
  end
@@ -19,7 +19,7 @@ module RuboCop
19
19
  'instead of a block.'
20
20
  SUPER_TYPES = %i[super zsuper].freeze
21
21
 
22
- def_node_matcher :proc_node?, '(send (const nil? :Proc) :new)'
22
+ def_node_matcher :proc_node?, '(send (const {nil? cbase} :Proc) :new)'
23
23
  def_node_matcher :symbol_proc?, <<~PATTERN
24
24
  (block
25
25
  ${(send ...) (super ...) zsuper}
@@ -174,7 +174,7 @@ module RuboCop
174
174
  end
175
175
 
176
176
  def unparenthesized_method_call?(child)
177
- method_name(child) =~ /^[a-z]/i && !child.parenthesized?
177
+ /^[a-z]/i.match?(method_name(child)) && !child.parenthesized?
178
178
  end
179
179
 
180
180
  def below_ternary_precedence?(child)
@@ -33,8 +33,8 @@ module RuboCop
33
33
  # end
34
34
  # end
35
35
  #
36
- class TrailingMethodEndStatement < Cop
37
- include Alignment
36
+ class TrailingMethodEndStatement < Base
37
+ extend AutoCorrector
38
38
 
39
39
  MSG = 'Place the end statement of a multi-line method on ' \
40
40
  'its own line.'
@@ -42,13 +42,11 @@ module RuboCop
42
42
  def on_def(node)
43
43
  return unless trailing_end?(node)
44
44
 
45
- add_offense(node, location: end_token(node).pos)
46
- end
47
-
48
- def autocorrect(node)
49
- lambda do |corrector|
50
- break_line_before_end(node, corrector)
51
- remove_semicolon(node, corrector)
45
+ add_offense(node.loc.end) do |corrector|
46
+ corrector.insert_before(
47
+ node.loc.end,
48
+ "\n" + ' ' * node.loc.keyword.column
49
+ )
52
50
  end
53
51
  end
54
52
 
@@ -60,30 +58,9 @@ module RuboCop
60
58
  body_and_end_on_same_line?(node)
61
59
  end
62
60
 
63
- def end_token(node)
64
- tokens(node).reverse.find(&:end?)
65
- end
66
-
67
61
  def body_and_end_on_same_line?(node)
68
- end_token(node).line == token_before_end(node).line
69
- end
70
-
71
- def token_before_end(node)
72
- i = tokens(node).index(end_token(node))
73
- tokens(node)[i - 1]
74
- end
75
-
76
- def break_line_before_end(node, corrector)
77
- corrector.insert_before(
78
- end_token(node).pos,
79
- "\n" + ' ' * configured_indentation_width
80
- )
81
- end
82
-
83
- def remove_semicolon(node, corrector)
84
- return unless token_before_end(node).semicolon?
85
-
86
- corrector.remove(token_before_end(node).pos)
62
+ last_child = node.children.last
63
+ last_child.loc.last_line == node.loc.end.last_line
87
64
  end
88
65
  end
89
66
  end
@@ -28,6 +28,8 @@ module RuboCop
28
28
  # attr_reader :baz
29
29
  # end
30
30
  class TrivialAccessors < Cop
31
+ include AllowedMethods
32
+
31
33
  MSG = 'Use `attr_%<kind>s` to define trivial %<kind>s methods.'
32
34
 
33
35
  def on_def(node)
@@ -95,9 +97,8 @@ module RuboCop
95
97
  cop_config['IgnoreClassMethods']
96
98
  end
97
99
 
98
- def allowed_methods
99
- allowed_methods = cop_config['AllowedMethods']
100
- Array(allowed_methods).map(&:to_sym) + [:initialize]
100
+ def allowed_method_names
101
+ allowed_methods.map(&:to_sym) + [:initialize]
101
102
  end
102
103
 
103
104
  def dsl_writer?(method_name)
@@ -106,7 +107,7 @@ module RuboCop
106
107
 
107
108
  def trivial_reader?(node)
108
109
  looks_like_trivial_reader?(node) &&
109
- !allowed_method?(node) && !allowed_reader?(node)
110
+ !allowed_method_name?(node) && !allowed_reader?(node)
110
111
  end
111
112
 
112
113
  def looks_like_trivial_reader?(node)
@@ -115,7 +116,7 @@ module RuboCop
115
116
 
116
117
  def trivial_writer?(node)
117
118
  looks_like_trivial_writer?(node) &&
118
- !allowed_method?(node) && !allowed_writer?(node.method_name)
119
+ !allowed_method_name?(node) && !allowed_writer?(node.method_name)
119
120
  end
120
121
 
121
122
  def_node_matcher :looks_like_trivial_writer?, <<~PATTERN
@@ -123,8 +124,8 @@ module RuboCop
123
124
  (defs _ _ (args (arg ...)) (ivasgn _ (lvar _)))}
124
125
  PATTERN
125
126
 
126
- def allowed_method?(node)
127
- allowed_methods.include?(node.method_name) ||
127
+ def allowed_method_name?(node)
128
+ allowed_method_names.include?(node.method_name) ||
128
129
  exact_name_match? && !names_match?(node)
129
130
  end
130
131
 
@@ -73,7 +73,7 @@ module RuboCop
73
73
  strings.any? do |s|
74
74
  string = s.str_content.dup.force_encoding(::Encoding::UTF_8)
75
75
  !string.valid_encoding? ||
76
- string !~ word_regex || string =~ / /
76
+ !word_regex.match?(string) || / /.match?(string)
77
77
  end
78
78
  end
79
79
 
@@ -19,6 +19,8 @@ module RuboCop
19
19
  # foo == "bar"
20
20
  # foo <= 42
21
21
  # bar > 10
22
+ # "#{interpolation}" == foo
23
+ # /#{interpolation}/ == foo
22
24
  #
23
25
  # @example EnforcedStyle: forbid_for_equality_operators_only
24
26
  # # bad
@@ -109,7 +111,8 @@ module RuboCop
109
111
  rhs = node.first_argument
110
112
 
111
113
  return true if lhs.literal? && rhs.literal? ||
112
- !lhs.literal? && !rhs.literal?
114
+ !lhs.literal? && !rhs.literal? ||
115
+ interpolation?(lhs)
113
116
 
114
117
  enforce_yoda? ? lhs.literal? : rhs.literal?
115
118
  end
@@ -150,6 +153,20 @@ module RuboCop
150
153
  def program_name?(name)
151
154
  PROGRAM_NAMES.include?(name)
152
155
  end
156
+
157
+ def interpolation?(node)
158
+ return true if node.dstr_type?
159
+
160
+ # TODO: Use `RegexpNode#interpolation?` when the following is released.
161
+ # https://github.com/rubocop-hq/rubocop-ast/pull/18
162
+ if node.regexp_type?
163
+ return true if node.children.any? do |child|
164
+ child.respond_to?(:begin_type?) && child.begin_type?
165
+ end
166
+ end
167
+
168
+ false
169
+ end
153
170
  end
154
171
  end
155
172
  end
@@ -108,8 +108,8 @@ module RuboCop
108
108
  # implement `#size`, but not `#empty`. We ignore those to
109
109
  # reduce false positives.
110
110
  def_node_matcher :non_polymorphic_collection?, <<~PATTERN
111
- {(send (send (send (const nil? :File) :stat _) ...) ...)
112
- (send (send (send (const nil? {:Tempfile :StringIO}) {:new :open} ...) ...) ...)}
111
+ {(send (send (send (const {nil? cbase} :File) :stat _) ...) ...)
112
+ (send (send (send (const {nil? cbase} {:Tempfile :StringIO}) {:new :open} ...) ...) ...)}
113
113
  PATTERN
114
114
  end
115
115
  end
@@ -10,37 +10,37 @@ module RuboCop
10
10
  # first the ones needed for autocorrection (if any), then the rest
11
11
  # (unless autocorrections happened).
12
12
  class Team
13
- DEFAULT_OPTIONS = {
14
- auto_correct: false,
15
- debug: false
16
- }.freeze
17
-
18
- Investigation = Struct.new(:offenses, :errors)
19
-
20
13
  attr_reader :errors, :warnings, :updated_source_file, :cops
21
14
 
22
15
  alias updated_source_file? updated_source_file
23
16
 
24
- def initialize(cops, config = nil, options = nil)
17
+ def initialize(cops, config = nil, options = {})
25
18
  @cops = cops
26
19
  @config = config
27
- @options = options || DEFAULT_OPTIONS
28
- @errors = []
29
- @warnings = []
20
+ @options = options
21
+ reset
22
+ @ready = true
30
23
 
31
24
  validate_config
32
25
  end
33
26
 
27
+ # @return [Team]
28
+ def self.new(cop_or_classes, config, options = {})
29
+ # Support v0 api:
30
+ return mobilize(cop_or_classes, config, options) if cop_or_classes.first.is_a?(Class)
31
+
32
+ super
33
+ end
34
+
34
35
  # @return [Team] with cops assembled from the given `cop_classes`
35
- def self.mobilize(cop_classes, config, options = nil)
36
- options ||= DEFAULT_OPTIONS
36
+ def self.mobilize(cop_classes, config, options = {})
37
37
  cops = mobilize_cops(cop_classes, config, options)
38
38
  new(cops, config, options)
39
39
  end
40
40
 
41
41
  # @return [Array<Cop::Cop>]
42
- def self.mobilize_cops(cop_classes, config, options = nil)
43
- options ||= DEFAULT_OPTIONS
42
+ def self.mobilize_cops(cop_classes, config, options = {})
43
+ cop_classes = Registry.new(cop_classes.to_a) unless cop_classes.is_a?(Registry)
44
44
  only = options.fetch(:only, [])
45
45
  safe = options.fetch(:safe, false)
46
46
  cop_classes.enabled(config, only, safe).map do |cop_class|
@@ -56,93 +56,102 @@ module RuboCop
56
56
  @options[:debug]
57
57
  end
58
58
 
59
+ # @deprecated. Use investigate
60
+ # @return Array<offenses>
59
61
  def inspect_file(processed_source)
60
- # If we got any syntax errors, return only the syntax offenses.
61
- unless processed_source.valid_syntax?
62
- return Lint::Syntax.offenses_from_processed_source(
63
- processed_source, @config, @options
64
- )
62
+ investigate(processed_source).offenses
63
+ end
64
+
65
+ # @return [Commissioner::InvestigationReport]
66
+ def investigate(processed_source)
67
+ be_ready
68
+
69
+ # The autocorrection process may have to be repeated multiple times
70
+ # until there are no corrections left to perform
71
+ # To speed things up, run auto-correcting cops by themselves, and only
72
+ # run the other cops when no corrections are left
73
+ on_duty = roundup_relevant_cops(processed_source.file_path)
74
+
75
+ autocorrect_cops, other_cops = on_duty.partition(&:autocorrect?)
76
+
77
+ report = investigate_partial(autocorrect_cops, processed_source)
78
+
79
+ unless autocorrect(processed_source, report)
80
+ # If we corrected some errors, another round of inspection will be
81
+ # done, and any other offenses will be caught then, so only need
82
+ # to check other_cops if no correction was done
83
+ report = report.merge(investigate_partial(other_cops, processed_source))
65
84
  end
66
85
 
67
- offenses(processed_source)
86
+ process_errors(processed_source.path, report.errors)
87
+
88
+ report
89
+ ensure
90
+ @ready = false
68
91
  end
69
92
 
93
+ # @deprecated
70
94
  def forces
71
- @forces ||= forces_for(cops)
95
+ @forces ||= self.class.forces_for(cops)
72
96
  end
73
97
 
74
- def forces_for(cops)
75
- Force.all.each_with_object([]) do |force_class, forces|
76
- joining_cops = cops.select { |cop| cop.join_force?(force_class) }
77
- next if joining_cops.empty?
98
+ # @return [Array<Force>] needed for the given cops
99
+ def self.forces_for(cops)
100
+ needed = Hash.new { |h, k| h[k] = [] }
101
+ cops.each do |cop|
102
+ Array(cop.class.joining_forces).each { |force| needed[force] << cop }
103
+ end
78
104
 
79
- forces << force_class.new(joining_cops)
105
+ needed.map do |force_class, joining_cops|
106
+ force_class.new(joining_cops)
80
107
  end
81
108
  end
82
109
 
83
- def autocorrect(buffer, cops)
110
+ def external_dependency_checksum
111
+ keys = cops.map(&:external_dependency_checksum).compact
112
+ Digest::SHA1.hexdigest(keys.join)
113
+ end
114
+
115
+ private
116
+
117
+ def autocorrect(processed_source, report)
84
118
  @updated_source_file = false
85
119
  return unless autocorrect?
86
120
 
87
- new_source = autocorrect_all_cops(buffer, cops)
121
+ new_source = autocorrect_report(report)
88
122
 
89
- return if new_source == buffer.source
123
+ return unless new_source
90
124
 
91
125
  if @options[:stdin]
92
126
  # holds source read in from stdin, when --stdin option is used
93
127
  @options[:stdin] = new_source
94
128
  else
95
- filename = buffer.name
129
+ filename = processed_source.buffer.name
96
130
  File.open(filename, 'w') { |f| f.write(new_source) }
97
131
  end
98
132
  @updated_source_file = true
99
- rescue RuboCop::ErrorWithAnalyzedFileLocation => e
100
- process_errors(buffer.name, [e])
101
- raise e.cause
102
133
  end
103
134
 
104
- def external_dependency_checksum
105
- keys = cops.map(&:external_dependency_checksum).compact
106
- Digest::SHA1.hexdigest(keys.join)
107
- end
108
-
109
- private
110
-
111
- def offenses(processed_source) # rubocop:disable Metrics/AbcSize
112
- # The autocorrection process may have to be repeated multiple times
113
- # until there are no corrections left to perform
114
- # To speed things up, run auto-correcting cops by themselves, and only
115
- # run the other cops when no corrections are left
116
- on_duty = roundup_relevant_cops(processed_source.file_path)
117
-
118
- autocorrect_cops, other_cops = on_duty.partition(&:autocorrect?)
119
-
120
- autocorrect = investigate(autocorrect_cops, processed_source)
121
-
122
- if autocorrect(processed_source.buffer, autocorrect_cops)
123
- # We corrected some errors. Another round of inspection will be
124
- # done, and any other offenses will be caught then, so we don't
125
- # need to continue.
126
- return autocorrect.offenses
127
- end
135
+ def be_ready
136
+ return if @ready
128
137
 
129
- other = investigate(other_cops, processed_source)
130
-
131
- errors = [*autocorrect.errors, *other.errors]
132
- process_errors(processed_source.path, errors)
133
-
134
- autocorrect.offenses.concat(other.offenses)
138
+ reset
139
+ @cops.map!(&:ready)
140
+ @ready = true
135
141
  end
136
142
 
137
- def investigate(cops, processed_source)
138
- return Investigation.new([], {}) if cops.empty?
139
-
140
- commissioner = Commissioner.new(cops, forces_for(cops), @options)
141
- offenses = commissioner.investigate(processed_source)
143
+ def reset
144
+ @errors = []
145
+ @warnings = []
146
+ end
142
147
 
143
- Investigation.new(offenses, commissioner.errors)
148
+ # @return [Commissioner::InvestigationReport]
149
+ def investigate_partial(cops, processed_source)
150
+ commissioner = Commissioner.new(cops, self.class.forces_for(cops), @options)
151
+ commissioner.investigate(processed_source)
144
152
  end
145
153
 
154
+ # @return [Array<cop>]
146
155
  def roundup_relevant_cops(filename)
147
156
  cops.reject do |cop|
148
157
  cop.excluded_file?(filename) ||
@@ -163,30 +172,45 @@ module RuboCop
163
172
  cop.class.support_target_rails_version?(cop.target_rails_version)
164
173
  end
165
174
 
166
- def autocorrect_all_cops(buffer, cops)
167
- corrector = Corrector.new(buffer)
175
+ def autocorrect_report(report)
176
+ corrector = collate_corrections(report)
168
177
 
169
- collate_corrections(corrector, cops)
178
+ corrector.rewrite unless corrector.empty?
179
+ end
170
180
 
171
- if !corrector.corrections.empty?
172
- corrector.rewrite
173
- else
174
- buffer.source
181
+ def collate_corrections(report)
182
+ corrector = Corrector.new(report.processed_source)
183
+
184
+ each_corrector(report) do |to_merge|
185
+ suppress_clobbering do
186
+ corrector.merge!(to_merge)
187
+ end
175
188
  end
189
+
190
+ corrector
176
191
  end
177
192
 
178
- def collate_corrections(corrector, cops)
193
+ def each_corrector(report)
179
194
  skips = Set.new
195
+ report.cop_reports.each do |cop_report|
196
+ cop = cop_report.cop
197
+ corrector = cop_report.corrector
180
198
 
181
- cops.each do |cop|
182
- next if cop.corrections.empty?
199
+ next if corrector.nil? || corrector.empty?
183
200
  next if skips.include?(cop.class)
184
201
 
185
- corrector.corrections.concat(cop.corrections)
202
+ yield corrector
203
+
186
204
  skips.merge(cop.class.autocorrect_incompatible_with)
187
205
  end
188
206
  end
189
207
 
208
+ def suppress_clobbering
209
+ yield
210
+ rescue ::Parser::ClobberingError
211
+ # ignore Clobbering errors
212
+ end
213
+
190
214
  def validate_config
191
215
  cops.each do |cop|
192
216
  cop.validate_config if cop.respond_to?(:validate_config)