From 51249fefdc0d549ed574bc4ecb9d115089e82d87 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Tue, 14 Jan 2025 02:12:28 +0900 Subject: [PATCH] :cop: Lint/Void: Literal 0 used in void context. --- spec/fixtures/nocov_complex.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/fixtures/nocov_complex.rb b/spec/fixtures/nocov_complex.rb index 9005f83a..95beb0c0 100644 --- a/spec/fixtures/nocov_complex.rb +++ b/spec/fixtures/nocov_complex.rb @@ -1,5 +1,5 @@ # So much skippping -# rubocop:disable Metrics/MethodLength +# rubocop:disable Metrics/MethodLength, Lint/Void module NoCovComplex def self.call(arg) # :nocov: @@ -24,4 +24,4 @@ def self.call(arg) end end end -# rubocop:enable Metrics/MethodLength +# rubocop:enable Metrics/MethodLength, Lint/Void