From 6a242d5739490b9f8c4d5dbea6c53f9d99a8cbfa Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Thu, 3 Nov 2022 19:44:28 +0000 Subject: [PATCH] checkpatch: ignore += UNNECESSARY_ELSE --- scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index b6af974f..5925f2a8 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -64,6 +64,7 @@ my @ignore = ( "PREFER_FALLTHROUGH", "ARRAY_SIZE", "INITIALISED_STATIC", + "UNNECESSARY_ELSE", ); my $help = 0; my $configuration_file = ".checkpatch.conf";