summaryrefslogtreecommitdiff
path: root/rubocop/cop/lint/last_keyword_argument.rb
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/lint/last_keyword_argument.rb')
-rw-r--r--rubocop/cop/lint/last_keyword_argument.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/rubocop/cop/lint/last_keyword_argument.rb b/rubocop/cop/lint/last_keyword_argument.rb
index 3f5ad7e20d7..f50c25f7924 100644
--- a/rubocop/cop/lint/last_keyword_argument.rb
+++ b/rubocop/cop/lint/last_keyword_argument.rb
@@ -18,6 +18,8 @@ module RuboCop
KEYWORD_DEPRECATION_STR = 'maybe ** should be added to the call'
def on_send(node)
+ return if target_ruby_version >= 3.0
+
arg = get_last_argument(node)
return unless arg
@@ -49,13 +51,13 @@ module RuboCop
end
def known_match?(file_path, line_number, method_name)
- file_path_from_root = file_path.sub(File.expand_path('../../..', __dir__), '')
- file_and_line = "#{file_path_from_root}:#{line_number}"
-
method_name = 'initialize' if method_name == 'new'
return unless self.class.keyword_warnings[method_name]
+ file_path_from_root = file_path.sub(File.expand_path('../../..', __dir__), '')
+ file_and_line = "#{file_path_from_root}:#{line_number}"
+
self.class.keyword_warnings[method_name].any? do |warning|
warning.include?(file_and_line)
end