From 140fe9c50f518827508dc5b51240534548940b58 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Thu, 3 Oct 2024 14:57:05 +0200 Subject: [PATCH] [clang-tidy] disable readability-misleading-indentation this only triggers because of some #ifdef and some of our macros. As all the code is clang-formatted anyway the warning is useless. --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index e113cff00..828555003 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -71,6 +71,7 @@ Checks: > -readability-identifier-length, -readability-implicit-bool-conversion, -readability-magic-numbers, + -readability-misleading-indentation, -readability-qualified-auto, -readability-suspicious-call-argument, -readability-uppercase-literal-suffix,