diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-11-07 15:32:22 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-11-07 17:55:53 +0100 |
commit | 67875bfa8377c85f44f35111582b7522414b86fc (patch) | |
tree | d3dccf42dda8ee39ec54be8a815bb1cacf4d4e08 /.clang-tidy | |
parent | 4b91c4314090e02f7bc9ea44bed2e5a49010b305 (diff) | |
download | justbuild-67875bfa8377c85f44f35111582b7522414b86fc.tar.gz |
Add configuration for clang-format and clang-tidy
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 00000000..7f632b63 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,8 @@ +FormatStyle: Google +Checks: '*,-abseil-*,-altera-*,-android-*,-boost-*,-cert-*,-darwin-*,-fuchsia-*,-linuxkernel-*,-llvm-*,-llvmlibc-*,-mpi-*,-objc-*,-zircon-*' +CheckOptions: [ + { + key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, + value: '1' + } +]
\ No newline at end of file |