From d1306d9fc2f1356ff2667ffd762b108fefda2618 Mon Sep 17 00:00:00 2001 From: Oliver Walter Date: Fri, 2 Feb 2024 19:54:16 +0100 Subject: [PATCH] added clang-format style --- .clang-format | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..021d84c --- /dev/null +++ b/.clang-format @@ -0,0 +1,14 @@ +# Format Style Options - Created with Clang Power Tools +--- +BasedOnStyle: Mozilla +AlignAfterOpenBracket: AlwaysBreak +AlignEscapedNewlines: DontAlign +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +BreakBeforeBraces: Attach +ColumnLimit: 120 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DerivePointerAlignment: true +MaxEmptyLinesToKeep: 3 +...