2017-03-25 19:12:18 +01:00
|
|
|
BasedOnStyle: LLVM
|
|
|
|
IndentWidth: 8
|
|
|
|
UseTab: Always
|
2017-04-06 15:27:47 +02:00
|
|
|
BreakBeforeBraces: Custom
|
2017-05-26 17:03:46 +02:00
|
|
|
Standard: Cpp11
|
2017-04-06 15:27:47 +02:00
|
|
|
BraceWrapping:
|
|
|
|
AfterClass: true
|
|
|
|
AfterControlStatement: false
|
|
|
|
AfterEnum: true
|
|
|
|
AfterFunction: true
|
|
|
|
AfterNamespace: true
|
|
|
|
AfterStruct: true
|
|
|
|
AfterUnion: true
|
|
|
|
BeforeCatch: false
|
|
|
|
BeforeElse: false
|
2018-03-23 11:07:19 +01:00
|
|
|
FixNamespaceComments: false
|
2017-03-25 19:12:18 +01:00
|
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
|
|
IndentCaseLabels: false
|
|
|
|
AccessModifierOffset: -8
|
2017-03-31 22:29:34 +02:00
|
|
|
ColumnLimit: 90
|
2017-10-09 11:32:06 +02:00
|
|
|
AllowShortFunctionsOnASingleLine: InlineOnly
|
2017-04-10 09:17:53 +02:00
|
|
|
SortIncludes: false
|
2017-03-25 19:12:18 +01:00
|
|
|
IncludeCategories:
|
|
|
|
- Regex: '^".*'
|
|
|
|
Priority: 2
|
|
|
|
- Regex: '^<.*'
|
|
|
|
Priority: 1
|
2017-04-06 15:37:02 +02:00
|
|
|
AlignAfterOpenBracket: DontAlign
|
|
|
|
ContinuationIndentWidth: 16
|
2017-10-09 11:32:06 +02:00
|
|
|
ConstructorInitializerIndentWidth: 16
|
|
|
|
BreakConstructorInitializers: AfterColon
|