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