From 46fbac9564b4471ce9ec8fdb188ebafc39984f4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Wed, 30 Nov 2016 19:01:02 +0100 Subject: [PATCH] Add .clang-format style file (#4836) [ci skip] --- .clang-format | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000000..10190ab957 --- /dev/null +++ b/.clang-format @@ -0,0 +1,16 @@ +--- +BasedOnStyle: LLVM +AccessModifierOffset: '-4' +AlignConsecutiveAssignments: 'true' +AlignConsecutiveDeclarations: 'true' +AllowShortFunctionsOnASingleLine: Empty +BreakBeforeBraces: Allman +ColumnLimit: '128' +Cpp11BracedListStyle: 'false' +IndentWidth: '4' +PointerAlignment: Middle +SortIncludes: 'true' +Standard: Cpp11 +TabWidth: '4' + +...