xref: /reactos/.clang-format (revision 0c64aed8)
1# full manual is at https://clang.llvm.org/docs/ClangFormatStyleOptions.html
2---
3BasedOnStyle: Microsoft
4
5IndentWidth:     4
6UseTab:          Never
7
8IndentCaseLabels: true
9
10AllowAllArgumentsOnNextLine: false
11AllowAllParametersOfDeclarationOnNextLine: false
12
13BinPackParameters: false
14BinPackArguments: true
15
16# This applies to () [] <>
17AlignAfterOpenBracket: AlwaysBreak
18
19# Always break before braces
20BreakBeforeBraces: Allman
21
22# return type on it's own line
23AlwaysBreakAfterReturnType: All
24
25SpaceBeforeAssignmentOperators: true
26SpaceBeforeParens: ControlStatements
27SpaceBeforeRangeBasedForLoopColon: true
28SpaceInEmptyParentheses: false
29SpacesBeforeTrailingComments: 1
30SpacesInAngles:  false
31SpacesInContainerLiterals: true
32SpacesInCStyleCastParentheses: false
33SpacesInParentheses: false
34SpacesInSquareBrackets: false
35...
36