From 7f8f010b614bbe45c50bbcb8f625f4f25d3531ba Mon Sep 17 00:00:00 2001 From: Joshua Warner Date: Wed, 18 Dec 2013 15:37:47 -0700 Subject: [PATCH] Specify formatting style via .clang-format config file --- .clang-format | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000000..910160fcbe --- /dev/null +++ b/.clang-format @@ -0,0 +1,7 @@ +--- +BasedOnStyle: Chromium +IndentCaseLabels: false +BreakBeforeBraces: Stroustrup +AllowShortFunctionsOnASingleLine: false +BreakBeforeBinaryOperators: true +...