]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/jaeger-client-cpp/.clang-format
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / jaeger-client-cpp / .clang-format
1 Language: Cpp
2 AccessModifierOffset: -2
3 AlignAfterOpenBracket: Align
4 AlignConsecutiveAssignments: false
5 AlignConsecutiveDeclarations: false
6 AlignEscapedNewlinesLeft: false
7 AlignOperands: true
8 AlignTrailingComments: false
9 AllowAllParametersOfDeclarationOnNextLine: true
10 AllowShortBlocksOnASingleLine: false
11 AllowShortCaseLabelsOnASingleLine: false
12 AllowShortFunctionsOnASingleLine: All
13 AllowShortIfStatementsOnASingleLine: false
14 AllowShortLoopsOnASingleLine: false
15 AlwaysBreakAfterDefinitionReturnType: None
16 AlwaysBreakAfterReturnType: None
17 AlwaysBreakBeforeMultilineStrings: true
18 AlwaysBreakTemplateDeclarations: true
19 BinPackArguments: false
20 BinPackParameters: false
21 BraceWrapping:
22 AfterClass: false
23 AfterControlStatement: false
24 AfterEnum: false
25 AfterFunction: true
26 AfterNamespace: false
27 AfterStruct: false
28 AfterUnion: false
29 BeforeCatch: false
30 BeforeElse: true
31 IndentBraces: false
32 BreakBeforeBinaryOperators: None
33 BreakBeforeBraces: Custom
34 BreakBeforeTernaryOperators: true
35 BreakConstructorInitializersBeforeComma: true
36 ColumnLimit: 80
37 CommentPragmas: '^ IWYU pragma:'
38 ConstructorInitializerAllOnOneLineOrOnePerLine: false
39 ConstructorInitializerIndentWidth: 4
40 ContinuationIndentWidth: 4
41 Cpp11BracedListStyle: false
42 DerivePointerAlignment: false
43 DisableFormat: false
44 ExperimentalAutoDetectBinPacking: false
45 IncludeCategories:
46 - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
47 Priority: 2
48 - Regex: '^(<|"(gtest|isl|json)/)'
49 Priority: 3
50 - Regex: '.*'
51 Priority: 1
52 IndentCaseLabels: false
53 IndentWidth: 4
54 IndentWrappedFunctionNames: false
55 KeepEmptyLinesAtTheStartOfBlocks: true
56 MacroBlockBegin: ''
57 MacroBlockEnd: ''
58 MaxEmptyLinesToKeep: 1
59 NamespaceIndentation: None
60 ObjCBlockIndentWidth: 4
61 ObjCSpaceAfterProperty: true
62 ObjCSpaceBeforeProtocolList: true
63 PenaltyBreakBeforeFirstCallParameter: 19
64 PenaltyBreakComment: 300
65 PenaltyBreakFirstLessLess: 120
66 PenaltyBreakString: 1000
67 PenaltyExcessCharacter: 1000000
68 PenaltyReturnTypeOnItsOwnLine: 60
69 PointerAlignment: Left
70 ReflowComments: true
71 SortIncludes: true
72 SpaceAfterCStyleCast: false
73 SpaceBeforeAssignmentOperators: true
74 SpaceBeforeParens: ControlStatements
75 SpaceInEmptyParentheses: false
76 SpacesBeforeTrailingComments: 2
77 SpacesInAngles: false
78 SpacesInContainerLiterals: true
79 SpacesInCStyleCastParentheses: false
80 SpacesInParentheses: false
81 SpacesInSquareBrackets: false
82 Standard: Cpp11
83 UseTab: Never