chore: disable all clang-tidy checks in third_party libraries

(cherry picked from commit f88890a052)
This commit is contained in:
iTrooz
2025-12-16 13:46:03 +01:00
committed by WerWolv
parent 684a9b3009
commit 91ef40ec99
2 changed files with 5 additions and 0 deletions

View File

@@ -559,6 +559,9 @@ function(detectBadClone)
file (GLOB EXTERNAL_DIRS "lib/external/*" "lib/third_party/*")
foreach (EXTERNAL_DIR ${EXTERNAL_DIRS})
if(NOT IS_DIRECTORY "${EXTERNAL_DIR}")
continue()
endif()
file(GLOB_RECURSE RESULT "${EXTERNAL_DIR}/*")
list(LENGTH RESULT ENTRY_COUNT)
if(ENTRY_COUNT LESS_EQUAL 1)

2
lib/third_party/.clang-tidy vendored Normal file
View File

@@ -0,0 +1,2 @@
# Disable all checks
Checks: '-*'