From 842a1b13aa24a33e40d5e19acf329956ecc5374e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lo=C3=AFse=20Brosseau?= Date: Mon, 2 Dec 2024 17:51:42 -0500 Subject: [PATCH] Add .clang-tidy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Éloïse Brosseau --- .clang-tidy | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .clang-tidy diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 000000000..2bf615398 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,20 @@ +--- +Checks: > + bugprone-*, + cert-*, + clang-diagnostic-*, + clang-analyzer-*, + concurrency-*, + cppcoreguidelines-*, + -cppcoreguidelines-pro-type-reinterpret-cast, + google-explicit-constructor, + misc-*, + modernize-*, + -modernize-use-trailing-return-type, + performance-*, + readability-*, + +WarningsAsErrors: '' +HeaderFilterRegex: '' +FormatStyle: 'file' +...