rubocop 1.45.1 → 1.47.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/config/default.yml +10 -9
- data/lib/rubocop/cli/command/auto_generate_config.rb +7 -0
- data/lib/rubocop/comment_config.rb +19 -0
- data/lib/rubocop/cop/autocorrect_logic.rb +1 -1
- data/lib/rubocop/cop/base.rb +1 -1
- data/lib/rubocop/cop/bundler/gem_comment.rb +1 -1
- data/lib/rubocop/cop/corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/alignment_corrector.rb +2 -2
- data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +3 -3
- data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +3 -3
- data/lib/rubocop/cop/correctors/line_break_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +2 -2
- data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +1 -1
- data/lib/rubocop/cop/correctors/parentheses_corrector.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/cop_description.rb +4 -4
- data/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/location_expression.rb +37 -0
- data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +42 -0
- data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +1 -1
- data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +39 -0
- data/lib/rubocop/cop/internal_affairs.rb +3 -0
- data/lib/rubocop/cop/layout/block_end_newline.rb +4 -4
- data/lib/rubocop/cop/layout/class_structure.rb +5 -3
- data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/empty_comment.rb +3 -3
- data/lib/rubocop/cop/layout/empty_line_between_defs.rb +1 -1
- data/lib/rubocop/cop/layout/end_alignment.rb +4 -0
- data/lib/rubocop/cop/layout/first_argument_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +8 -2
- data/lib/rubocop/cop/layout/heredoc_indentation.rb +2 -2
- data/lib/rubocop/cop/layout/leading_comment_space.rb +1 -1
- data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +1 -3
- data/lib/rubocop/cop/layout/line_continuation_spacing.rb +11 -7
- data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +2 -2
- data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +2 -2
- data/lib/rubocop/cop/layout/space_inside_block_braces.rb +1 -1
- data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +1 -1
- data/lib/rubocop/cop/layout/trailing_whitespace.rb +1 -1
- data/lib/rubocop/cop/lint/constant_resolution.rb +1 -1
- data/lib/rubocop/cop/lint/debugger.rb +3 -0
- data/lib/rubocop/cop/lint/deprecated_class_methods.rb +1 -1
- data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +1 -1
- data/lib/rubocop/cop/lint/duplicate_methods.rb +2 -2
- data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +1 -3
- data/lib/rubocop/cop/lint/else_layout.rb +1 -1
- data/lib/rubocop/cop/lint/empty_block.rb +1 -1
- data/lib/rubocop/cop/lint/empty_conditional_body.rb +4 -2
- data/lib/rubocop/cop/lint/empty_interpolation.rb +1 -1
- data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +1 -1
- data/lib/rubocop/cop/lint/literal_in_interpolation.rb +46 -4
- data/lib/rubocop/cop/lint/missing_super.rb +31 -2
- data/lib/rubocop/cop/lint/nested_method_definition.rb +1 -9
- data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +6 -10
- data/lib/rubocop/cop/lint/percent_string_array.rb +1 -1
- data/lib/rubocop/cop/lint/percent_symbol_array.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +10 -4
- data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +5 -5
- data/lib/rubocop/cop/lint/redundant_require_statement.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_with_index.rb +1 -1
- data/lib/rubocop/cop/lint/redundant_with_object.rb +1 -1
- data/lib/rubocop/cop/lint/refinement_import_methods.rb +2 -1
- data/lib/rubocop/cop/lint/rescue_type.rb +3 -3
- data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +1 -1
- data/lib/rubocop/cop/lint/script_permission.rb +1 -1
- data/lib/rubocop/cop/lint/shadowed_exception.rb +1 -1
- data/lib/rubocop/cop/lint/to_enum_arguments.rb +6 -2
- data/lib/rubocop/cop/lint/useless_access_modifier.rb +1 -9
- data/lib/rubocop/cop/lint/useless_rescue.rb +2 -1
- data/lib/rubocop/cop/lint/useless_times.rb +1 -1
- data/lib/rubocop/cop/metrics/collection_literal_length.rb +76 -0
- data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +2 -2
- data/lib/rubocop/cop/migration/department_name.rb +1 -1
- data/lib/rubocop/cop/mixin/annotation_comment.rb +1 -1
- data/lib/rubocop/cop/mixin/code_length.rb +1 -1
- data/lib/rubocop/cop/mixin/comments_help.rb +2 -2
- data/lib/rubocop/cop/mixin/documentation_comment.rb +1 -1
- data/lib/rubocop/cop/mixin/hash_alignment_styles.rb +1 -1
- data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +10 -7
- data/lib/rubocop/cop/mixin/hash_transform_method.rb +3 -3
- data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -3
- data/lib/rubocop/cop/mixin/ordered_gem_node.rb +1 -1
- data/lib/rubocop/cop/mixin/range_help.rb +1 -6
- data/lib/rubocop/cop/mixin/statement_modifier.rb +2 -2
- data/lib/rubocop/cop/mixin/trailing_comma.rb +1 -1
- data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +1 -1
- data/lib/rubocop/cop/naming/method_name.rb +1 -1
- data/lib/rubocop/cop/naming/predicate_name.rb +1 -1
- data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +1 -1
- data/lib/rubocop/cop/style/accessor_grouping.rb +22 -12
- data/lib/rubocop/cop/style/arguments_forwarding.rb +3 -3
- data/lib/rubocop/cop/style/array_intersect.rb +1 -1
- data/lib/rubocop/cop/style/ascii_comments.rb +1 -1
- data/lib/rubocop/cop/style/bisected_attr_accessor.rb +1 -1
- data/lib/rubocop/cop/style/block_comments.rb +1 -1
- data/lib/rubocop/cop/style/block_delimiters.rb +2 -2
- data/lib/rubocop/cop/style/case_like_if.rb +1 -1
- data/lib/rubocop/cop/style/collection_compact.rb +1 -1
- data/lib/rubocop/cop/style/comment_annotation.rb +1 -1
- data/lib/rubocop/cop/style/commented_keyword.rb +2 -2
- data/lib/rubocop/cop/style/concat_array_literals.rb +10 -2
- data/lib/rubocop/cop/style/conditional_assignment.rb +6 -6
- data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +1 -1
- data/lib/rubocop/cop/style/documentation.rb +1 -1
- data/lib/rubocop/cop/style/documentation_method.rb +4 -4
- data/lib/rubocop/cop/style/each_with_object.rb +1 -1
- data/lib/rubocop/cop/style/empty_block_parameter.rb +1 -1
- data/lib/rubocop/cop/style/empty_lambda_parameter.rb +1 -1
- data/lib/rubocop/cop/style/eval_with_location.rb +4 -4
- data/lib/rubocop/cop/style/explicit_block_argument.rb +1 -1
- data/lib/rubocop/cop/style/file_read.rb +1 -1
- data/lib/rubocop/cop/style/file_write.rb +1 -1
- data/lib/rubocop/cop/style/guard_clause.rb +1 -1
- data/lib/rubocop/cop/style/hash_syntax.rb +1 -1
- data/lib/rubocop/cop/style/if_unless_modifier.rb +34 -0
- data/lib/rubocop/cop/style/inverse_methods.rb +5 -5
- data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +2 -2
- data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +1 -1
- data/lib/rubocop/cop/style/min_max.rb +3 -3
- data/lib/rubocop/cop/style/mixin_grouping.rb +4 -4
- data/lib/rubocop/cop/style/multiline_method_signature.rb +1 -1
- data/lib/rubocop/cop/style/multiline_ternary_operator.rb +1 -1
- data/lib/rubocop/cop/style/negated_if_else_condition.rb +1 -1
- data/lib/rubocop/cop/style/nil_lambda.rb +2 -2
- data/lib/rubocop/cop/style/redundant_condition.rb +2 -2
- data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +2 -2
- data/lib/rubocop/cop/style/redundant_interpolation.rb +2 -2
- data/lib/rubocop/cop/style/redundant_parentheses.rb +1 -1
- data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +5 -6
- data/lib/rubocop/cop/style/redundant_regexp_escape.rb +10 -3
- data/lib/rubocop/cop/style/redundant_sort.rb +3 -3
- data/lib/rubocop/cop/style/redundant_string_escape.rb +2 -2
- data/lib/rubocop/cop/style/require_order.rb +1 -3
- data/lib/rubocop/cop/style/rescue_standard_error.rb +2 -2
- data/lib/rubocop/cop/style/safe_navigation.rb +2 -2
- data/lib/rubocop/cop/style/slicing_with_range.rb +1 -1
- data/lib/rubocop/cop/style/sole_nested_conditional.rb +2 -2
- data/lib/rubocop/cop/style/stderr_puts.rb +1 -1
- data/lib/rubocop/cop/style/struct_inheritance.rb +1 -1
- data/lib/rubocop/cop/style/trailing_underscore_variable.rb +1 -1
- data/lib/rubocop/cop/style/unpack_first.rb +3 -3
- data/lib/rubocop/cop/style/word_array.rb +17 -5
- data/lib/rubocop/cop/style/yoda_condition.rb +1 -1
- data/lib/rubocop/cop/style/zero_length_predicate.rb +9 -5
- data/lib/rubocop/cop/team.rb +11 -8
- data/lib/rubocop/cop/util.rb +13 -4
- data/lib/rubocop/cop/variable_force/variable.rb +5 -3
- data/lib/rubocop/directive_comment.rb +3 -3
- data/lib/rubocop/ext/comment.rb +18 -0
- data/lib/rubocop/rspec/cop_helper.rb +1 -1
- data/lib/rubocop/rspec/shared_contexts.rb +4 -0
- data/lib/rubocop/target_ruby.rb +1 -1
- data/lib/rubocop/version.rb +1 -1
- data/lib/rubocop.rb +2 -0
- metadata +10 -5
@@ -67,8 +67,7 @@ module RuboCop
|
|
67
67
|
|
68
68
|
outermost_send = outermost_send_on_same_line(heredoc_arg)
|
69
69
|
return unless outermost_send
|
70
|
-
return
|
71
|
-
return unless heredoc_arg.first_line != outermost_send.loc.end.line
|
70
|
+
return if end_keyword_before_closing_parentesis?(node)
|
72
71
|
return if subsequent_closing_parentheses_in_same_line?(outermost_send)
|
73
72
|
return if exist_argument_between_heredoc_end_and_closing_parentheses?(node)
|
74
73
|
|
@@ -160,6 +159,12 @@ module RuboCop
|
|
160
159
|
|
161
160
|
# Closing parenthesis helpers.
|
162
161
|
|
162
|
+
def end_keyword_before_closing_parentesis?(parenthesized_send_node)
|
163
|
+
parenthesized_send_node.ancestors.any? do |ancestor|
|
164
|
+
ancestor.loc.respond_to?(:end) && ancestor.loc.end&.source == 'end'
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
163
168
|
def subsequent_closing_parentheses_in_same_line?(outermost_send)
|
164
169
|
last_arg_of_outer_send = outermost_send.last_argument
|
165
170
|
return false unless last_arg_of_outer_send&.loc.respond_to?(:end) &&
|
@@ -215,6 +220,7 @@ module RuboCop
|
|
215
220
|
end
|
216
221
|
|
217
222
|
def exist_argument_between_heredoc_end_and_closing_parentheses?(node)
|
223
|
+
return true unless node.loc.end
|
218
224
|
return false unless (heredoc_end = find_most_bottom_of_heredoc_end(node.arguments))
|
219
225
|
|
220
226
|
heredoc_end < node.loc.end.begin_pos &&
|
@@ -115,7 +115,7 @@ module RuboCop
|
|
115
115
|
end
|
116
116
|
|
117
117
|
def adjust_minus(corrector, node)
|
118
|
-
heredoc_beginning = node.
|
118
|
+
heredoc_beginning = node.source
|
119
119
|
corrected = heredoc_beginning.sub(/<<-?/, '<<~')
|
120
120
|
corrector.replace(node, corrected)
|
121
121
|
end
|
@@ -139,7 +139,7 @@ module RuboCop
|
|
139
139
|
end
|
140
140
|
|
141
141
|
def base_indent_level(node)
|
142
|
-
base_line_num = node.
|
142
|
+
base_line_num = node.source_range.line
|
143
143
|
base_line = processed_source.lines[base_line_num - 1]
|
144
144
|
indent_level(base_line)
|
145
145
|
end
|
@@ -51,12 +51,11 @@ module RuboCop
|
|
51
51
|
private_constant :LINE_1_ENDING, :LINE_2_BEGINNING,
|
52
52
|
:LEADING_STYLE_OFFENSE, :TRAILING_STYLE_OFFENSE
|
53
53
|
|
54
|
-
# rubocop:disable Metrics/AbcSize
|
55
54
|
def on_dstr(node)
|
56
55
|
# Quick check if we possibly have line continuations.
|
57
56
|
return unless node.source.include?('\\')
|
58
57
|
|
59
|
-
end_of_first_line = node.
|
58
|
+
end_of_first_line = node.source_range.begin_pos - node.source_range.column
|
60
59
|
|
61
60
|
raw_lines(node).each_cons(2) do |raw_line_one, raw_line_two|
|
62
61
|
end_of_first_line += raw_line_one.length
|
@@ -70,7 +69,6 @@ module RuboCop
|
|
70
69
|
end
|
71
70
|
end
|
72
71
|
end
|
73
|
-
# rubocop:enable Metrics/AbcSize
|
74
72
|
|
75
73
|
private
|
76
74
|
|
@@ -87,22 +87,26 @@ module RuboCop
|
|
87
87
|
corrector.replace(range, correction)
|
88
88
|
end
|
89
89
|
|
90
|
-
|
90
|
+
# rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
|
91
|
+
def ignored_literal_ranges(ast)
|
91
92
|
# which lines start inside a string literal?
|
92
93
|
return [] if ast.nil?
|
93
94
|
|
94
|
-
|
95
|
-
|
96
|
-
loc = str.location
|
95
|
+
ast.each_node(:str, :dstr, :array).with_object(Set.new) do |literal, ranges|
|
96
|
+
loc = literal.location
|
97
97
|
|
98
|
-
if
|
98
|
+
if literal.array_type?
|
99
|
+
next unless literal.percent_literal?
|
100
|
+
|
101
|
+
ranges << loc.expression
|
102
|
+
elsif literal.heredoc?
|
99
103
|
ranges << loc.heredoc_body
|
100
104
|
elsif loc.respond_to?(:begin) && loc.begin
|
101
105
|
ranges << loc.expression
|
102
106
|
end
|
103
107
|
end
|
104
|
-
ranges
|
105
108
|
end
|
109
|
+
# rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
|
106
110
|
|
107
111
|
def comment_ranges(comments)
|
108
112
|
comments.map(&:loc).map(&:expression)
|
@@ -119,7 +123,7 @@ module RuboCop
|
|
119
123
|
end
|
120
124
|
|
121
125
|
def ignored_ranges
|
122
|
-
@ignored_ranges ||=
|
126
|
+
@ignored_ranges ||= ignored_literal_ranges(processed_source.ast) +
|
123
127
|
comment_ranges(processed_source.comments)
|
124
128
|
end
|
125
129
|
|
@@ -102,7 +102,7 @@ module RuboCop
|
|
102
102
|
node.loc.name
|
103
103
|
when :masgn
|
104
104
|
mlhs_node, = *node
|
105
|
-
mlhs_node.
|
105
|
+
mlhs_node.source_range
|
106
106
|
else
|
107
107
|
# It is a wrapper with access modifier.
|
108
108
|
node.child_nodes.first.loc.name
|
@@ -196,7 +196,7 @@ module RuboCop
|
|
196
196
|
if begin_end_alignment_style == 'start_of_line'
|
197
197
|
start_line_range(alignment_node)
|
198
198
|
else
|
199
|
-
alignment_node.
|
199
|
+
alignment_node.source_range
|
200
200
|
end
|
201
201
|
end
|
202
202
|
|
@@ -146,7 +146,7 @@ module RuboCop
|
|
146
146
|
if single_line && /\S$/.match?(inner)
|
147
147
|
no_space(right_brace.begin_pos, right_brace.end_pos, 'Space missing inside }.')
|
148
148
|
else
|
149
|
-
column = node.
|
149
|
+
column = node.source_range.column
|
150
150
|
return if multiline_block?(left_brace, right_brace) &&
|
151
151
|
aligned_braces?(inner, right_brace, column)
|
152
152
|
|
@@ -70,6 +70,9 @@ module RuboCop
|
|
70
70
|
def on_send(node)
|
71
71
|
return unless debugger_method?(node)
|
72
72
|
|
73
|
+
# Basically, debugger methods are not used as a method argument without arguments.
|
74
|
+
return if node.arguments.empty? && node.each_ancestor(:send, :csend).any?
|
75
|
+
|
73
76
|
add_offense(node)
|
74
77
|
end
|
75
78
|
|
@@ -82,7 +82,7 @@ module RuboCop
|
|
82
82
|
|
83
83
|
def offense_range(node)
|
84
84
|
if socket_const?(node.receiver) || dir_env_file_const?(node.receiver)
|
85
|
-
node.
|
85
|
+
node.source_range.begin.join(node.loc.selector.end)
|
86
86
|
elsif node.method?(:attr)
|
87
87
|
node
|
88
88
|
else
|
@@ -187,7 +187,7 @@ module RuboCop
|
|
187
187
|
if DEF_TYPES.include?(node.type)
|
188
188
|
node.loc.keyword.join(node.loc.name)
|
189
189
|
else
|
190
|
-
node.
|
190
|
+
node.source_range
|
191
191
|
end
|
192
192
|
end
|
193
193
|
|
@@ -258,7 +258,7 @@ module RuboCop
|
|
258
258
|
end
|
259
259
|
|
260
260
|
def source_location(node)
|
261
|
-
range = node.
|
261
|
+
range = node.source_range
|
262
262
|
path = smart_path(range.source_buffer.name)
|
263
263
|
"#{path}:#{range.line}"
|
264
264
|
end
|
@@ -86,9 +86,7 @@ module RuboCop
|
|
86
86
|
# Cache by loc, not by regexp content, as content can be repeated in multiple patterns
|
87
87
|
key = node.loc
|
88
88
|
|
89
|
-
@interpolation_locs[key] ||= node.children.select(&:begin_type?).map
|
90
|
-
interpolation.loc.expression
|
91
|
-
end
|
89
|
+
@interpolation_locs[key] ||= node.children.select(&:begin_type?).map(&:source_range)
|
92
90
|
end
|
93
91
|
end
|
94
92
|
end
|
@@ -81,7 +81,7 @@ module RuboCop
|
|
81
81
|
def autocorrect(corrector, node, first_else)
|
82
82
|
corrector.insert_after(node.loc.else, "\n")
|
83
83
|
|
84
|
-
blank_range = range_between(node.loc.else.end_pos, first_else.
|
84
|
+
blank_range = range_between(node.loc.else.end_pos, first_else.source_range.begin_pos)
|
85
85
|
corrector.replace(blank_range, indentation(node))
|
86
86
|
end
|
87
87
|
end
|
@@ -77,7 +77,7 @@ module RuboCop
|
|
77
77
|
return false unless processed_source.contains_comment?(node.source_range)
|
78
78
|
|
79
79
|
line_comment = processed_source.comment_at_line(node.source_range.line)
|
80
|
-
!line_comment || !comment_disables_cop?(line_comment.
|
80
|
+
!line_comment || !comment_disables_cop?(line_comment.source)
|
81
81
|
end
|
82
82
|
|
83
83
|
def allow_empty_lambdas?
|
@@ -72,6 +72,8 @@ module RuboCop
|
|
72
72
|
return if cop_config['AllowComments'] && contains_comments?(node)
|
73
73
|
|
74
74
|
add_offense(node, message: format(MSG, keyword: node.keyword)) do |corrector|
|
75
|
+
next if node.parent&.call_type?
|
76
|
+
|
75
77
|
autocorrect(corrector, node)
|
76
78
|
end
|
77
79
|
end
|
@@ -86,7 +88,7 @@ module RuboCop
|
|
86
88
|
|
87
89
|
def remove_comments(corrector, node)
|
88
90
|
comments_in_range(node).each do |comment|
|
89
|
-
range = range_by_whole_lines(comment.
|
91
|
+
range = range_by_whole_lines(comment.source_range, include_final_newline: true)
|
90
92
|
corrector.remove(range)
|
91
93
|
end
|
92
94
|
end
|
@@ -141,7 +143,7 @@ module RuboCop
|
|
141
143
|
if empty_if_branch?(node) && else_branch?(node)
|
142
144
|
node.source_range.with(end_pos: node.loc.else.begin_pos)
|
143
145
|
elsif node.loc.else
|
144
|
-
node.source_range.with(end_pos: node.condition.
|
146
|
+
node.source_range.with(end_pos: node.condition.source_range.end_pos)
|
145
147
|
elsif all_branches_body_missing?(node)
|
146
148
|
if_node = node.ancestors.detect(&:if?)
|
147
149
|
node.source_range.with(end_pos: if_node.loc.end.end_pos)
|
@@ -25,7 +25,7 @@ module RuboCop
|
|
25
25
|
def on_interpolation(begin_node)
|
26
26
|
return unless begin_node.children.empty?
|
27
27
|
|
28
|
-
add_offense(begin_node) { |corrector| corrector.remove(begin_node.
|
28
|
+
add_offense(begin_node) { |corrector| corrector.remove(begin_node.source_range) }
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
@@ -58,7 +58,7 @@ module RuboCop
|
|
58
58
|
(node.str_type? && !node.loc.respond_to?(:begin)) || node.source_range.is?('__LINE__')
|
59
59
|
end
|
60
60
|
|
61
|
-
# rubocop:disable Metrics/MethodLength
|
61
|
+
# rubocop:disable Metrics/MethodLength, Metrics/CyclomaticComplexity
|
62
62
|
def autocorrected_value(node)
|
63
63
|
case node.type
|
64
64
|
when :int
|
@@ -71,13 +71,15 @@ module RuboCop
|
|
71
71
|
autocorrected_value_for_symbol(node)
|
72
72
|
when :array
|
73
73
|
autocorrected_value_for_array(node)
|
74
|
+
when :hash
|
75
|
+
autocorrected_value_for_hash(node)
|
74
76
|
when :nil
|
75
77
|
''
|
76
78
|
else
|
77
79
|
node.source.gsub('"', '\"')
|
78
80
|
end
|
79
81
|
end
|
80
|
-
# rubocop:enable Metrics/MethodLength
|
82
|
+
# rubocop:enable Metrics/MethodLength, Metrics/CyclomaticComplexity
|
81
83
|
|
82
84
|
def autocorrected_value_for_string(node)
|
83
85
|
if node.source.start_with?("'", '%q')
|
@@ -89,9 +91,18 @@ module RuboCop
|
|
89
91
|
|
90
92
|
def autocorrected_value_for_symbol(node)
|
91
93
|
end_pos =
|
92
|
-
node.loc.end ? node.loc.end.begin_pos : node.
|
94
|
+
node.loc.end ? node.loc.end.begin_pos : node.source_range.end_pos
|
93
95
|
|
94
|
-
range_between(node.loc.begin.end_pos, end_pos).source
|
96
|
+
range_between(node.loc.begin.end_pos, end_pos).source.gsub('"', '\"')
|
97
|
+
end
|
98
|
+
|
99
|
+
def autocorrected_value_in_hash_for_symbol(node)
|
100
|
+
# TODO: We need to detect symbol unacceptable names more correctly
|
101
|
+
if / |"|'/.match?(node.value.to_s)
|
102
|
+
":\\\"#{node.value.to_s.gsub('"') { '\\\\\"' }}\\\""
|
103
|
+
else
|
104
|
+
":#{node.value}"
|
105
|
+
end
|
95
106
|
end
|
96
107
|
|
97
108
|
def autocorrected_value_for_array(node)
|
@@ -100,6 +111,37 @@ module RuboCop
|
|
100
111
|
contents_range(node).source.split.to_s.gsub('"', '\"')
|
101
112
|
end
|
102
113
|
|
114
|
+
def autocorrected_value_for_hash(node)
|
115
|
+
hash_string = node.children.map do |child|
|
116
|
+
key = autocorrected_value_in_hash(child.key)
|
117
|
+
value = autocorrected_value_in_hash(child.value)
|
118
|
+
"#{key}=>#{value}"
|
119
|
+
end.join(', ')
|
120
|
+
|
121
|
+
"{#{hash_string}}"
|
122
|
+
end
|
123
|
+
|
124
|
+
# rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
125
|
+
def autocorrected_value_in_hash(node)
|
126
|
+
case node.type
|
127
|
+
when :int
|
128
|
+
node.children.last.to_i.to_s
|
129
|
+
when :float
|
130
|
+
node.children.last.to_f.to_s
|
131
|
+
when :str
|
132
|
+
"\\\"#{node.value.to_s.gsub('"') { '\\\\\"' }}\\\""
|
133
|
+
when :sym
|
134
|
+
autocorrected_value_in_hash_for_symbol(node)
|
135
|
+
when :array
|
136
|
+
autocorrected_value_for_array(node)
|
137
|
+
when :hash
|
138
|
+
autocorrected_value_for_hash(node)
|
139
|
+
else
|
140
|
+
node.source.gsub('"', '\"')
|
141
|
+
end
|
142
|
+
end
|
143
|
+
# rubocop:enable Metrics/MethodLength, Metrics/AbcSize
|
144
|
+
|
103
145
|
# Does node print its own source when converted to a string?
|
104
146
|
def prints_as_self?(node)
|
105
147
|
node.basic_literal? ||
|
@@ -28,6 +28,21 @@ module RuboCop
|
|
28
28
|
# end
|
29
29
|
#
|
30
30
|
# # bad
|
31
|
+
# Employee = Class.new(Person) do
|
32
|
+
# def initialize(name, salary)
|
33
|
+
# @salary = salary
|
34
|
+
# end
|
35
|
+
# end
|
36
|
+
#
|
37
|
+
# # good
|
38
|
+
# Employee = Class.new(Person) do
|
39
|
+
# def initialize(name, salary)
|
40
|
+
# super(name)
|
41
|
+
# @salary = salary
|
42
|
+
# end
|
43
|
+
# end
|
44
|
+
#
|
45
|
+
# # bad
|
31
46
|
# class Parent
|
32
47
|
# def self.inherited(base)
|
33
48
|
# do_something
|
@@ -55,6 +70,13 @@ module RuboCop
|
|
55
70
|
|
56
71
|
CALLBACKS = (CLASS_LIFECYCLE_CALLBACKS + METHOD_LIFECYCLE_CALLBACKS).to_set.freeze
|
57
72
|
|
73
|
+
# @!method class_new_block(node)
|
74
|
+
def_node_matcher :class_new_block, <<~RUBY
|
75
|
+
({block numblock}
|
76
|
+
(send
|
77
|
+
(const {nil? cbase} :Class) :new $_) ...)
|
78
|
+
RUBY
|
79
|
+
|
58
80
|
def on_def(node)
|
59
81
|
return unless offender?(node)
|
60
82
|
|
@@ -88,8 +110,15 @@ module RuboCop
|
|
88
110
|
end
|
89
111
|
|
90
112
|
def inside_class_with_stateful_parent?(node)
|
91
|
-
class_node = node.
|
92
|
-
|
113
|
+
if (class_node = node.parent) && class_node.class_type?
|
114
|
+
class_node.parent_class && !stateless_class?(class_node.parent_class)
|
115
|
+
elsif (block_node = node.each_ancestor(:block, :numblock).first)
|
116
|
+
return false unless (super_class = class_new_block(block_node))
|
117
|
+
|
118
|
+
!stateless_class?(super_class)
|
119
|
+
else
|
120
|
+
false
|
121
|
+
end
|
93
122
|
end
|
94
123
|
|
95
124
|
def stateless_class?(node)
|
@@ -120,7 +120,7 @@ module RuboCop
|
|
120
120
|
|
121
121
|
def scoping_method_call?(child)
|
122
122
|
child.sclass_type? || eval_call?(child) || exec_call?(child) ||
|
123
|
-
class_constructor?
|
123
|
+
child.class_constructor? || allowed_method_name?(child)
|
124
124
|
end
|
125
125
|
|
126
126
|
def allowed_method_name?(node)
|
@@ -138,14 +138,6 @@ module RuboCop
|
|
138
138
|
def_node_matcher :exec_call?, <<~PATTERN
|
139
139
|
(block (send _ {:instance_exec :class_exec :module_exec} ...) ...)
|
140
140
|
PATTERN
|
141
|
-
|
142
|
-
# @!method class_constructor?(node)
|
143
|
-
def_node_matcher :class_constructor?, <<~PATTERN
|
144
|
-
({block numblock} {
|
145
|
-
(send (const {nil? cbase} {:Class :Module :Struct}) :new ...)
|
146
|
-
(send (const {nil? cbase} :Data) :define ...)
|
147
|
-
} ...)
|
148
|
-
PATTERN
|
149
141
|
end
|
150
142
|
end
|
151
143
|
end
|
@@ -69,7 +69,7 @@ module RuboCop
|
|
69
69
|
end
|
70
70
|
|
71
71
|
def on_in_pattern(node)
|
72
|
-
regexp_patterns =
|
72
|
+
regexp_patterns = regexp_patterns(node)
|
73
73
|
|
74
74
|
@valid_ref = regexp_patterns.map { |pattern| check_regexp(pattern) }.compact.max
|
75
75
|
end
|
@@ -90,16 +90,12 @@ module RuboCop
|
|
90
90
|
|
91
91
|
private
|
92
92
|
|
93
|
-
def
|
94
|
-
pattern =
|
95
|
-
|
96
|
-
case pattern.type
|
97
|
-
when :array_pattern, :match_alt
|
98
|
-
pattern.children
|
99
|
-
when :match_as
|
100
|
-
patterns(pattern)
|
101
|
-
else
|
93
|
+
def regexp_patterns(in_node)
|
94
|
+
pattern = in_node.pattern
|
95
|
+
if pattern.regexp_type?
|
102
96
|
[pattern]
|
97
|
+
else
|
98
|
+
pattern.each_descendant(:regexp).to_a
|
103
99
|
end
|
104
100
|
end
|
105
101
|
|
@@ -41,7 +41,7 @@ module RuboCop
|
|
41
41
|
|
42
42
|
def autocorrect(corrector, node)
|
43
43
|
node.children.each do |child|
|
44
|
-
range = child.
|
44
|
+
range = child.source_range
|
45
45
|
|
46
46
|
corrector.remove_trailing(range, 1) if range.source.end_with?(',')
|
47
47
|
corrector.remove_leading(range, 1) if
|
@@ -231,7 +231,7 @@ module RuboCop
|
|
231
231
|
cop_names = cops.sort.map { |c| describe(c) }.join(', ')
|
232
232
|
|
233
233
|
add_offense(location, message: message(cop_names)) do |corrector|
|
234
|
-
range = comment_range_with_surrounding_space(location, comment.
|
234
|
+
range = comment_range_with_surrounding_space(location, comment.source_range)
|
235
235
|
|
236
236
|
if leave_free_comment?(comment, range)
|
237
237
|
corrector.replace(range, ' # ')
|
@@ -263,8 +263,8 @@ module RuboCop
|
|
263
263
|
|
264
264
|
def cop_range(comment, cop)
|
265
265
|
cop = remove_department_marker(cop)
|
266
|
-
matching_range(comment.
|
267
|
-
matching_range(comment.
|
266
|
+
matching_range(comment.source_range, cop) ||
|
267
|
+
matching_range(comment.source_range, Badge.parse(cop).cop_name) ||
|
268
268
|
raise("Couldn't find #{cop} in comment: #{comment.text}")
|
269
269
|
end
|
270
270
|
|
@@ -284,12 +284,18 @@ module RuboCop
|
|
284
284
|
.all? { |intervening| /\A\s*,\s*\Z/.match?(intervening) }
|
285
285
|
end
|
286
286
|
|
287
|
+
SIMILAR_COP_NAMES_CACHE = Hash.new do |hash, cop_name|
|
288
|
+
hash[:all_cop_names] = Registry.global.names unless hash.key?(:all_cop_names)
|
289
|
+
hash[cop_name] = NameSimilarity.find_similar_name(cop_name, hash[:all_cop_names])
|
290
|
+
end
|
291
|
+
private_constant :SIMILAR_COP_NAMES_CACHE
|
292
|
+
|
287
293
|
def describe(cop)
|
288
294
|
return 'all cops' if cop == 'all'
|
289
295
|
return "`#{remove_department_marker(cop)}` department" if department_marker?(cop)
|
290
296
|
return "`#{cop}`" if all_cop_names.include?(cop)
|
291
297
|
|
292
|
-
similar =
|
298
|
+
similar = SIMILAR_COP_NAMES_CACHE[cop]
|
293
299
|
similar ? "`#{cop}` (did you mean `#{similar}`?)" : "`#{cop}` (unknown cop)"
|
294
300
|
end
|
295
301
|
|
@@ -74,7 +74,7 @@ module RuboCop
|
|
74
74
|
end
|
75
75
|
|
76
76
|
def comment_start(comment)
|
77
|
-
comment.
|
77
|
+
comment.source_range.begin_pos
|
78
78
|
end
|
79
79
|
|
80
80
|
def cop_name_indention(comment, name)
|
@@ -82,7 +82,7 @@ module RuboCop
|
|
82
82
|
end
|
83
83
|
|
84
84
|
def range_with_comma(comment, name)
|
85
|
-
source = comment.
|
85
|
+
source = comment.source
|
86
86
|
|
87
87
|
begin_pos = cop_name_indention(comment, name)
|
88
88
|
end_pos = begin_pos + name.size
|
@@ -94,14 +94,14 @@ module RuboCop
|
|
94
94
|
|
95
95
|
def range_to_remove(begin_pos, end_pos, comment)
|
96
96
|
start = comment_start(comment)
|
97
|
-
source = comment.
|
97
|
+
source = comment.source
|
98
98
|
|
99
99
|
if source[begin_pos - 1] == ','
|
100
100
|
range_with_comma_before(start, begin_pos, end_pos)
|
101
101
|
elsif source[end_pos] == ','
|
102
102
|
range_with_comma_after(comment, start, begin_pos, end_pos)
|
103
103
|
else
|
104
|
-
range_between(start, comment.
|
104
|
+
range_between(start, comment.source_range.end_pos)
|
105
105
|
end
|
106
106
|
end
|
107
107
|
|
@@ -112,7 +112,7 @@ module RuboCop
|
|
112
112
|
# If the list of cops is comma-separated, but without a empty space after the comma,
|
113
113
|
# we should **not** remove the prepending empty space, thus begin_pos += 1
|
114
114
|
def range_with_comma_after(comment, start, begin_pos, end_pos)
|
115
|
-
begin_pos += 1 if comment.
|
115
|
+
begin_pos += 1 if comment.source[end_pos + 1] != ' '
|
116
116
|
|
117
117
|
range_between(start + begin_pos, start + end_pos + 1)
|
118
118
|
end
|
@@ -56,7 +56,7 @@ module RuboCop
|
|
56
56
|
if node.parent.respond_to?(:modifier_form?) && node.parent.modifier_form?
|
57
57
|
corrector.insert_after(node.parent, "\nend")
|
58
58
|
|
59
|
-
range = range_with_surrounding_space(node.
|
59
|
+
range = range_with_surrounding_space(node.source_range, side: :right)
|
60
60
|
else
|
61
61
|
range = range_by_whole_lines(node.source_range, include_final_newline: true)
|
62
62
|
end
|
@@ -141,7 +141,7 @@ module RuboCop
|
|
141
141
|
expression = loc.expression
|
142
142
|
|
143
143
|
if array_new?(variable)
|
144
|
-
expression = node.parent.
|
144
|
+
expression = node.parent.source_range if node.parent.array_type?
|
145
145
|
[expression, variable.source]
|
146
146
|
elsif !variable.array_type?
|
147
147
|
[expression, "[#{variable.source}]"]
|