|
1 | 1 | --- |
2 | | -Language: Cpp |
3 | | -# BasedOnStyle: LLVM |
4 | | -AccessModifierOffset: -2 |
5 | | -AlignAfterOpenBracket: Align |
6 | | -AlignConsecutiveAssignments: false |
7 | | -AlignConsecutiveDeclarations: false |
8 | | -AlignEscapedNewlinesLeft: false |
9 | | -AlignOperands: true |
10 | | -AlignTrailingComments: true |
11 | | -AllowAllParametersOfDeclarationOnNextLine: true |
12 | | -AllowShortBlocksOnASingleLine: false |
13 | | -AllowShortCaseLabelsOnASingleLine: false |
14 | | -AllowShortFunctionsOnASingleLine: None |
15 | | -AllowShortIfStatementsOnASingleLine: false |
16 | | -AllowShortLoopsOnASingleLine: false |
17 | | -AlwaysBreakAfterDefinitionReturnType: None |
18 | | -AlwaysBreakAfterReturnType: None |
19 | | -AlwaysBreakBeforeMultilineStrings: false |
20 | | -AlwaysBreakTemplateDeclarations: false |
21 | | -BinPackArguments: true |
22 | | -BinPackParameters: true |
23 | | -BraceWrapping: |
24 | | - AfterClass: false |
25 | | - AfterControlStatement: false |
26 | | - AfterEnum: false |
27 | | - AfterFunction: false |
28 | | - AfterNamespace: false |
29 | | - AfterObjCDeclaration: false |
30 | | - AfterStruct: false |
31 | | - AfterUnion: false |
32 | | - BeforeCatch: false |
33 | | - BeforeElse: false |
34 | | - IndentBraces: false |
35 | | -BreakBeforeBinaryOperators: None |
36 | | -BreakBeforeBraces: Attach |
37 | | -BreakBeforeTernaryOperators: true |
38 | | -BreakConstructorInitializersBeforeComma: false |
39 | | -ColumnLimit: 80 |
40 | | -CommentPragmas: '^ IWYU pragma:' |
41 | | -ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 2 | +BasedOnStyle: LLVM |
| 3 | +AllowShortCaseLabelsOnASingleLine: true |
| 4 | +AllowShortFunctionsOnASingleLine: Inline |
42 | 5 | ConstructorInitializerIndentWidth: 2 |
43 | 6 | ContinuationIndentWidth: 2 |
44 | | -Cpp11BracedListStyle: true |
45 | | -DerivePointerAlignment: false |
46 | | -DisableFormat: false |
47 | | -ExperimentalAutoDetectBinPacking: false |
48 | | -ForEachMacros: [ TAILQ_FOREACH, SPLAY_FOREACH, RB_FOREACH, WITH_MTX_LOCK, |
49 | | - WITH_SPIN_LOCK, WITH_RW_LOCK, SET_FOREACH, LIST_FOREACH, |
50 | | - TAILQ_FOREACH_REVERSE, TAILQ_FOREACH_SAFE, |
51 | | - LIST_FOREACH_SAFE, WITH_VM_MAP_LOCK ] |
52 | | -IncludeCategories: |
53 | | - - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
54 | | - Priority: 2 |
55 | | - - Regex: '^(<|"(gtest|isl|json)/)' |
56 | | - Priority: 3 |
57 | | - - Regex: '.*' |
58 | | - Priority: 1 |
| 7 | +IndentCaseBlocks: true |
59 | 8 | IndentCaseLabels: true |
60 | | -IndentWidth: 2 |
61 | | -IndentWrappedFunctionNames: false |
62 | | -KeepEmptyLinesAtTheStartOfBlocks: true |
63 | | -MacroBlockBegin: '' |
64 | | -MacroBlockEnd: '' |
65 | | -MaxEmptyLinesToKeep: 1 |
66 | | -NamespaceIndentation: None |
67 | | -ObjCBlockIndentWidth: 2 |
68 | | -ObjCSpaceAfterProperty: false |
69 | | -ObjCSpaceBeforeProtocolList: true |
70 | | -PenaltyBreakBeforeFirstCallParameter: 19 |
71 | | -PenaltyBreakComment: 300 |
72 | | -PenaltyBreakFirstLessLess: 120 |
73 | | -PenaltyBreakString: 1000 |
74 | | -PenaltyExcessCharacter: 1000000 |
75 | | -PenaltyReturnTypeOnItsOwnLine: 60 |
76 | | -PointerAlignment: Right |
77 | | -ReflowComments: true |
78 | | -SortIncludes: false |
79 | | -SpaceAfterCStyleCast: false |
80 | | -SpaceBeforeAssignmentOperators: true |
81 | | -SpaceBeforeParens: ControlStatements |
82 | | -SpaceInEmptyParentheses: false |
83 | | -SpacesBeforeTrailingComments: 1 |
84 | | -SpacesInAngles: false |
85 | | -SpacesInContainerLiterals: true |
86 | | -SpacesInCStyleCastParentheses: false |
87 | | -SpacesInParentheses: false |
88 | | -SpacesInSquareBrackets: false |
89 | | -Standard: Cpp11 |
90 | | -TabWidth: 8 |
91 | | -UseTab: Never |
92 | | -... |
93 | | - |
| 9 | +SortIncludes: Never |
0 commit comments