From 1246f168615d7e19b59869fd504723e7dd08c721 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Sun, 19 Nov 2023 09:41:40 +1000 Subject: [PATCH] init: disable clang-tidy's bugprone-easily-swappable-parameters This warning is too verbose to be useful. --- init.py | 1 + 1 file changed, 1 insertion(+) diff --git a/init.py b/init.py index 3fe8789..29df433 100755 --- a/init.py +++ b/init.py @@ -107,6 +107,7 @@ OPTIONS['iwyu'] = Option( TIDY_CHECKS=[ 'bugprone-*', + '-bugprone-easily-swappable-parameters', 'clang-analyzer-*', 'performance-*', 'portability-*',