From 3bf864dc1539a31a9a3e7c7d3c231b28e1c413c3 Mon Sep 17 00:00:00 2001 From: Tobias Predel Date: Sat, 20 May 2023 12:33:44 +0200 Subject: [PATCH] Add clang-tidy configuration file clang-tidy is a C/C++ linter. Meson automatically detects the configuration file and defines a clang-tidy target if clang-tidy is available. The target can be invoked by `ninja clang-tidy`. --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) create mode 100644 .clang-tidy diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 000000000..fd86f2815 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1 @@ +Checks: '*'