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' +...