fix(tools): disable clang-tidy static assert check

This patch disables clang-tidy checks which suggest replacing calls to
assert() with static_assert():
lib/attestation/src/attestation_key.c:75 error: found assert() that
could be replaced by static_assert()
        assert(SIMD_IS_FPU_ALLOWED());
        ^~~~~~
        static_assert               , ""

The suggested fix is not possible because this will be a runtime check
when RMM_FPU_USE_AT_REL2 is enabled.

Signed-off-by: Chuyue Luo <Chuyue.Luo@arm.com>
Change-Id: Iedeafd94581959438e40cd58ae8488862d7ca5dd
diff --git a/.clang-tidy b/.clang-tidy
index 85cf127..dc31952 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -18,6 +18,7 @@
     clang-analyzer-*,
     -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
     cert-*,
+    -cert-dcl03-c,
     -cert-dcl37-c,
     -cert-dcl51-cpp,
     -cert-msc30-c,
@@ -26,6 +27,7 @@
     -cert-msc51-cpp,
     misc-*,
     -misc-no-recursion,
+    -misc-static-assert,
     performance-*,
     -performance-no-int-to-ptr'