clang-format: use custom brace/indent style
This commit is contained in:
parent
2c07c9b665
commit
5a4fba96fa
|
@ -1,5 +1,4 @@
|
|||
AllowAllArgumentsOnNextLine: false
|
||||
BreakBeforeBraces: Allman
|
||||
Cpp11BracedListStyle: false
|
||||
ColumnLimit: 0
|
||||
BreakBeforeBinaryOperators: NonAssignment
|
||||
|
@ -15,4 +14,22 @@ PointerAlignment: Left
|
|||
SeparateDefinitionBlocks: Always
|
||||
SpaceBeforeParens: Never
|
||||
ReflowComments: false
|
||||
SortIncludes: false
|
||||
SortIncludes: false
|
||||
BreakBeforeBraces: Custom
|
||||
BraceWrapping:
|
||||
AfterCaseLabel: true
|
||||
AfterClass: true
|
||||
AfterControlStatement: Always
|
||||
AfterExternBlock: false
|
||||
AfterEnum: true
|
||||
AfterFunction: true
|
||||
AfterNamespace: true
|
||||
AfterObjCDeclaration: true
|
||||
AfterStruct: true
|
||||
AfterObjCDeclaration: true
|
||||
AfterUnion: true
|
||||
BeforeCatch: true
|
||||
BeforeElse: true
|
||||
BeforeLambdaBody: true
|
||||
BeforeWhile: true
|
||||
IndentExternBlock: false
|
||||
|
|
Loading…
Reference in New Issue