diff --git a/CMakeLists.txt b/CMakeLists.txt index 58cbe2c8239a7cbb78c70a5dbc43b452fb6f2587..a8034d6a2d7555957c6e5389545cdff03504e727 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -319,19 +319,5 @@ if (PANDA_FUZZILLI) endif() panda_add_sanitizers(TARGET es2panda-lib SANITIZERS ${PANDA_SANITIZERS_LIST}) -panda_add_to_clang_tidy(TARGET es2panda-lib CHECKS - "-modernize-use-trailing-return-type" - "-llvmlibc-restrict-system-libc-headers" - "-llvmlibc-callee-namespace" - "-cert-dcl21-cpp" - "-cppcoreguidelines-macro-usage" - "-cppcoreguidelines-pro-bounds-pointer-arithmetic" - "-fuchsia-default-arguments-calls" - "-fuchsia-default-arguments-declarations" - "-readability-implicit-bool-conversion" - "-misc-non-private-member-variables-in-classes" - "-hicpp-signed-bitwise" - "-altera-struct-pack-align" -) add_subdirectory(aot) diff --git a/aot/CMakeLists.txt b/aot/CMakeLists.txt index f4c39424742a97aa185d5510950319a0d7cf48b9..c71c647fa6640ddc03afc53c0e6d28a04561e90d 100644 --- a/aot/CMakeLists.txt +++ b/aot/CMakeLists.txt @@ -31,17 +31,3 @@ target_compile_options(es2panda ) panda_add_sanitizers(TARGET es2panda SANITIZERS ${PANDA_SANITIZERS_LIST}) -panda_add_to_clang_tidy(TARGET es2panda CHECKS - "-modernize-use-trailing-return-type" - "-llvmlibc-restrict-system-libc-headers" - "-llvmlibc-callee-namespace" - "-cert-dcl21-cpp" - "-cppcoreguidelines-macro-usage" - "-cppcoreguidelines-pro-bounds-pointer-arithmetic" - "-fuchsia-default-arguments-calls" - "-fuchsia-default-arguments-declarations" - "-readability-implicit-bool-conversion" - "-misc-non-private-member-variables-in-classes" - "-hicpp-signed-bitwise" - "-altera-struct-pack-align" -)