From 1d1beb84d7fc4d15104695b77763feb8d0eaa333 Mon Sep 17 00:00:00 2001 From: Guilherme Amadio Date: Fri, 13 Oct 2023 11:25:01 +0200 Subject: [PATCH] Add basic clang-tidy configuration file --- .clang-tidy | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .clang-tidy diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 00000000000..9a9c0b15886 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,12 @@ +# +# For a list of checks, run clang-tidy -checks=* --list-checks +# or see https://clang.llvm.org/extra/clang-tidy/checks/list.html +# +--- +Checks: '-*,clang-analyzer-core.*' +WarningsAsErrors: '' +HeaderFilterRegex: '' +FormatStyle: none +CheckOptions: + modernize-use-nullptr.NullMacros: 'NULL' +...