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