mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
36 lines
820 B
Plaintext
36 lines
820 B
Plaintext
|
# full manual is at https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
||
|
---
|
||
|
BasedOnStyle: Microsoft
|
||
|
|
||
|
IndentWidth: 4
|
||
|
UseTab: Never
|
||
|
|
||
|
IndentCaseLabels: true
|
||
|
|
||
|
AllowAllArgumentsOnNextLine: false
|
||
|
AllowAllParametersOfDeclarationOnNextLine: false
|
||
|
|
||
|
BinPackParameters: false
|
||
|
BinPackArguments: true
|
||
|
|
||
|
# This applies to () [] <>
|
||
|
AlignAfterOpenBracket: AlwaysBreak
|
||
|
|
||
|
# Always break before braces
|
||
|
BreakBeforeBraces: Allman
|
||
|
|
||
|
# return type on it's own line
|
||
|
AlwaysBreakAfterReturnType: All
|
||
|
|
||
|
SpaceBeforeAssignmentOperators: true
|
||
|
SpaceBeforeParens: ControlStatements
|
||
|
SpaceBeforeRangeBasedForLoopColon: true
|
||
|
SpaceInEmptyParentheses: false
|
||
|
SpacesBeforeTrailingComments: 1
|
||
|
SpacesInAngles: false
|
||
|
SpacesInContainerLiterals: true
|
||
|
SpacesInCStyleCastParentheses: false
|
||
|
SpacesInParentheses: false
|
||
|
SpacesInSquareBrackets: false
|
||
|
...
|