diff --git a/.clang-format b/.clang-format new file mode 100644 index 00000000..b07a1dc4 --- /dev/null +++ b/.clang-format @@ -0,0 +1,17 @@ +--- +Standard: Cpp11 +Language: Cpp +UseTab: ForContinuationAndIndentation +IndentWidth: '4' +TabWidth: '4' + +BreakBeforeBraces: Custom +BraceWrapping: + BeforeElse: True + +DerivePointerAlignment: 'false' +PointerAlignment: Middle + +ReflowComments: 'true' + +...