cmake/.clang-format

22 lines
551 B
Plaintext
Raw Normal View History

2016-07-09 11:21:54 +02:00
---
2018-08-09 18:06:22 +02:00
# This configuration requires clang-format version 6.0 exactly.
2016-07-09 11:21:54 +02:00
BasedOnStyle: Mozilla
AlignOperands: false
2018-08-09 18:06:22 +02:00
AllowShortFunctionsOnASingleLine: InlineOnly
2016-07-09 11:21:54 +02:00
AlwaysBreakAfterDefinitionReturnType: None
2018-08-09 18:06:22 +02:00
AlwaysBreakAfterReturnType: None
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
AfterClass: true
AfterEnum: true
AfterFunction: true
AfterStruct: true
AfterUnion: true
BreakBeforeBraces: Custom
2016-07-09 11:21:54 +02:00
ColumnLimit: 79
2018-08-09 18:06:22 +02:00
IndentPPDirectives: AfterHash
SortUsingDeclarations: false
SpaceAfterTemplateKeyword: true
2016-07-09 11:21:54 +02:00
...