diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 00000000..c2f306e2 --- /dev/null +++ b/.clang-format @@ -0,0 +1,33 @@ +Language: Cpp +BasedOnStyle: GNU +SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceBeforeAssignmentOperators: true +SpaceBeforeSquareBrackets: false +SpaceInEmptyBlock: false +SpaceInEmptyParentheses: false +SpacesInCStyleCastParentheses: false +SpacesInConditionalStatement: false +SpacesInContainerLiterals: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +SpaceBeforeParens: ControlStatements +ColumnLimit: 0 +PointerAlignment: Left +AlignAfterOpenBracket: Align +AlignConsecutiveMacros: true +AlignEscapedNewlines: Left +AlignOperands: true +AlignTrailingComments: true +AllowAllArgumentsOnNextLine: true +AllowShortBlocksOnASingleLine: true +IndentWidth: 4 +BreakBeforeBraces: Custom +BraceWrapping: + AfterCaseLabel: true + AfterControlStatement: Never + AfterFunction: true + BeforeElse: false + #BeforeWhile: false + AfterStruct: true +#BreakStringLiterals: true |