1 files changed, 26 insertions(+), 0 deletions(-)
A .clang-format
A .clang-format => .clang-format +26 -0
@@ 0,0 1,26 @@
+BasedOnStyle: LLVM
+
+IndentWidth: 4
+TabWidth: 4
+UseTab: Never
+
+ColumnLimit: 100
+
+BreakBeforeBraces: Attach
+
+AllowShortIfStatementsOnASingleLine: AllIfsAndElse
+AllowShortLoopsOnASingleLine: true
+AllowShortFunctionsOnASingleLine: All
+
+IndentCaseLabels: true
+SpaceBeforeParens: ControlStatements
+PointerAlignment: Left
+
+SortIncludes: true
+InsertBraces: true
+
+BraceWrapping:
+ AfterFunction: false
+ AfterControlStatement: false
+ AfterStruct: false
+ AfterEnum: false