Clang format: enable brace wrapping for structs
[ci skip]
This commit is contained in:
parent
dc0003fd91
commit
21512d44ee
1 changed files with 15 additions and 1 deletions
|
@ -9,7 +9,21 @@ AllowShortFunctionsOnASingleLine: false
|
|||
AlwaysBreakTemplateDeclarations: true
|
||||
AlwaysBreakBeforeMultilineStrings: false
|
||||
BreakBeforeBinaryOperators: true
|
||||
BreakBeforeBraces: Linux
|
||||
|
||||
# Same as 'Linux', but includes structs
|
||||
BreakBeforeBraces: Custom
|
||||
BraceWrapping:
|
||||
AfterClass: true
|
||||
AfterControlStatement: false
|
||||
AfterEnum: false
|
||||
AfterFunction: true
|
||||
AfterNamespace: true
|
||||
AfterObjCDeclaration: true
|
||||
AfterStruct: true
|
||||
AfterUnion: false
|
||||
BeforeCatch: false
|
||||
BeforeElse: false
|
||||
|
||||
BreakBeforeTernaryOperators: true
|
||||
BreakConstructorInitializersBeforeComma: true
|
||||
BinPackParameters: false
|
||||
|
|
Loading…
Add table
Reference in a new issue