diff --git a/.clang-format b/.clang-format new file mode 100644 index 00000000..249d707f --- /dev/null +++ b/.clang-format @@ -0,0 +1,18 @@ +# Format Style Options - Created with Clang Power Tools +--- +AllowShortFunctionsOnASingleLine: None +AllowShortIfStatementsOnASingleLine: true +BasedOnStyle: LLVM +BinPackArguments: false +BinPackParameters: false +BreakBeforeBraces: Allman +BreakConstructorInitializers: AfterColon +ColumnLimit: 160 +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth : 2 +ContinuationIndentWidth: 2 +MaxEmptyLinesToKeep: 2 +PointerAlignment: Middle +SpacesInAngles: true +SpacesInParentheses: true +...