src.ctf.lttng-live: remove some goto error-handling
[babeltrace.git] / .clang-format
1 # for clang-format ≥ 10
2 AccessModifierOffset: -4
3 AlignAfterOpenBracket: Align
4 AlignConsecutiveMacros: true
5 AlignConsecutiveAssignments: false
6 AlignConsecutiveDeclarations: false
7 AlignEscapedNewlines: Right
8 AlignOperands: true
9 AlignTrailingComments: true
10 AllowAllArgumentsOnNextLine: false
11 AllowAllConstructorInitializersOnNextLine: false
12 AllowAllParametersOfDeclarationOnNextLine: false
13 AllowShortBlocksOnASingleLine: false
14 AllowShortCaseLabelsOnASingleLine: false
15 AllowShortFunctionsOnASingleLine: None
16 AllowShortIfStatementsOnASingleLine: Never
17 AllowShortLambdasOnASingleLine: None
18 AllowShortLoopsOnASingleLine: false
19 AlwaysBreakAfterReturnType: None
20 AlwaysBreakBeforeMultilineStrings: false
21 AlwaysBreakTemplateDeclarations: Yes
22 BinPackArguments: true
23 BinPackParameters: true
24 BreakBeforeBinaryOperators: None
25 BreakBeforeBraces: Custom
26 BraceWrapping:
27 AfterCaseLabel: true
28 AfterClass: true
29 AfterControlStatement: Never
30 AfterEnum: true
31 AfterFunction: true
32 AfterNamespace: false
33 AfterStruct: true
34 AfterUnion: true
35 AfterExternBlock: false
36 BeforeCatch: false
37 BeforeElse: false
38 BeforeLambdaBody: false
39 BeforeWhile: false
40 SplitEmptyFunction: true
41 SplitEmptyRecord: true
42 SplitEmptyNamespace: true
43 BreakBeforeTernaryOperators: false
44 BreakConstructorInitializers: AfterColon
45 BreakInheritanceList: AfterColon
46 BreakStringLiterals: false
47 ColumnLimit: 100
48 CompactNamespaces: false
49 ConstructorInitializerAllOnOneLineOrOnePerLine: false
50 ConstructorInitializerIndentWidth: 4
51 ContinuationIndentWidth: 4
52 Cpp11BracedListStyle: true
53 DerivePointerAlignment: false
54 DisableFormat: false
55 ExperimentalAutoDetectBinPacking: false
56 FixNamespaceComments: true
57 IncludeBlocks: Preserve
58 IndentCaseLabels: false
59 IndentPPDirectives: AfterHash
60 IndentWidth: 4
61 IndentWrappedFunctionNames: false
62 KeepEmptyLinesAtTheStartOfBlocks: false
63 Language: Cpp
64 MaxEmptyLinesToKeep: 1
65 NamespaceIndentation: None
66 PointerAlignment: Left
67 ReflowComments: false
68 SortIncludes: false
69 SortUsingDeclarations: false
70 SpaceAfterCStyleCast: true
71 SpaceAfterLogicalNot: false
72 SpaceAfterTemplateKeyword: true
73 SpaceBeforeAssignmentOperators: true
74 SpaceBeforeCpp11BracedList: true
75 SpaceBeforeCtorInitializerColon: true
76 SpaceBeforeInheritanceColon: true
77 SpaceBeforeParens: ControlStatements
78 SpaceBeforeRangeBasedForLoopColon: true
79 SpaceInEmptyParentheses: false
80 SpacesBeforeTrailingComments: 1
81 SpacesInAngles: false
82 SpacesInCStyleCastParentheses: false
83 SpacesInContainerLiterals: false
84 SpacesInParentheses: false
85 SpacesInSquareBrackets: false
86 Standard: Cpp11
87 UseTab: Never
This page took 0.030556 seconds and 4 git commands to generate.