From dca64825724d69393c6097486d29c43d3575f08c Mon Sep 17 00:00:00 2001 From: Yohei Yukawa Date: Mon, 10 Apr 2023 06:18:39 +0000 Subject: [PATCH] Introduce `.clang-format` See https://clang.llvm.org/docs/ClangFormatStyleOptions.html about the format. See https://clang.llvm.org/docs/ClangFormat.html about how to trigger clang-format and integrations with common editors. PiperOrigin-RevId: 523046409 --- .clang-format | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 000000000..b499c939f --- /dev/null +++ b/.clang-format @@ -0,0 +1,6 @@ +BasedOnStyle: Google + +--- +Language: Cpp +PointerAlignment: Right +QualifierAlignment: Left