|
| 1 | +--- |
| 2 | +Language: Cpp |
| 3 | +BasedOnStyle: LLVM |
| 4 | +AccessModifierOffset: -2 |
| 5 | +AlignAfterOpenBracket: Align |
| 6 | +AlignConsecutiveMacros: true |
| 7 | +AlignConsecutiveAssignments: false |
| 8 | +AlignConsecutiveBitFields: true |
| 9 | +AlignConsecutiveDeclarations: true |
| 10 | +AlignEscapedNewlines: Left |
| 11 | +AlignTrailingComments: true |
| 12 | +AllowAllArgumentsOnNextLine: false |
| 13 | +AllowAllConstructorInitializersOnNextLine: false |
| 14 | +AllowAllParametersOfDeclarationOnNextLine: false |
| 15 | +AllowShortEnumsOnASingleLine: true |
| 16 | +AllowShortBlocksOnASingleLine: Never |
| 17 | +AllowShortCaseLabelsOnASingleLine: false |
| 18 | +AllowShortFunctionsOnASingleLine: All |
| 19 | +AllowShortLambdasOnASingleLine: All |
| 20 | +AllowShortIfStatementsOnASingleLine: Never |
| 21 | +AllowShortLoopsOnASingleLine: false |
| 22 | +AlwaysBreakAfterDefinitionReturnType: None |
| 23 | +AlwaysBreakAfterReturnType: TopLevelDefinitions |
| 24 | +AlwaysBreakBeforeMultilineStrings: false |
| 25 | +AlwaysBreakTemplateDeclarations: MultiLine |
| 26 | +BinPackArguments: true |
| 27 | +BinPackParameters: false |
| 28 | +BraceWrapping: |
| 29 | + AfterCaseLabel: false |
| 30 | + AfterClass: false |
| 31 | + AfterControlStatement: Never |
| 32 | + AfterEnum: false |
| 33 | + AfterFunction: false |
| 34 | + AfterNamespace: false |
| 35 | + AfterObjCDeclaration: false |
| 36 | + AfterStruct: false |
| 37 | + AfterUnion: false |
| 38 | + AfterExternBlock: false |
| 39 | + BeforeCatch: false |
| 40 | + BeforeElse: false |
| 41 | + BeforeLambdaBody: false |
| 42 | + BeforeWhile: false |
| 43 | + IndentBraces: false |
| 44 | + SplitEmptyFunction: true |
| 45 | + SplitEmptyRecord: true |
| 46 | + SplitEmptyNamespace: true |
| 47 | +BreakBeforeBinaryOperators: None |
| 48 | +BreakBeforeBraces: WebKit |
| 49 | +BreakBeforeInheritanceComma: false |
| 50 | +BreakInheritanceList: BeforeColon |
| 51 | +BreakBeforeTernaryOperators: true |
| 52 | +BreakConstructorInitializersBeforeComma: false |
| 53 | +BreakConstructorInitializers: BeforeColon |
| 54 | +BreakAfterJavaFieldAnnotations: false |
| 55 | +BreakStringLiterals: true |
| 56 | +ColumnLimit: 120 |
| 57 | +CommentPragmas: '^ IWYU pragma:' |
| 58 | +CompactNamespaces: false |
| 59 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 60 | +ConstructorInitializerIndentWidth: 4 |
| 61 | +ContinuationIndentWidth: 4 |
| 62 | +Cpp11BracedListStyle: true |
| 63 | +DeriveLineEnding: true |
| 64 | +DerivePointerAlignment: false |
| 65 | +DisableFormat: false |
| 66 | +ExperimentalAutoDetectBinPacking: true |
| 67 | +FixNamespaceComments: true |
| 68 | +ForEachMacros: |
| 69 | + - wl_list_for_each |
| 70 | + - wl_list_for_each_safe |
| 71 | +IncludeBlocks: Preserve |
| 72 | +IncludeCategories: |
| 73 | + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
| 74 | + Priority: 2 |
| 75 | + SortPriority: 0 |
| 76 | + - Regex: '^(<|"(gtest|gmock|isl|json)/)' |
| 77 | + Priority: 3 |
| 78 | + SortPriority: 0 |
| 79 | + - Regex: '.*' |
| 80 | + Priority: 1 |
| 81 | + SortPriority: 0 |
| 82 | +IncludeIsMainRegex: '(Test)?$' |
| 83 | +IncludeIsMainSourceRegex: '' |
| 84 | +IndentCaseLabels: false |
| 85 | +IndentCaseBlocks: false |
| 86 | +IndentGotoLabels: true |
| 87 | +IndentPPDirectives: None |
| 88 | +IndentExternBlock: AfterExternBlock |
| 89 | +IndentWidth: 4 |
| 90 | +IndentWrappedFunctionNames: false |
| 91 | +InsertTrailingCommas: None |
| 92 | +JavaScriptQuotes: Double |
| 93 | +JavaScriptWrapImports: true |
| 94 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 95 | +MacroBlockBegin: '' |
| 96 | +MacroBlockEnd: '' |
| 97 | +MaxEmptyLinesToKeep: 1 |
| 98 | +NamespaceIndentation: None |
| 99 | +ObjCBinPackProtocolList: Auto |
| 100 | +ObjCBlockIndentWidth: 2 |
| 101 | +ObjCBreakBeforeNestedBlockParam: true |
| 102 | +ObjCSpaceAfterProperty: false |
| 103 | +ObjCSpaceBeforeProtocolList: true |
| 104 | +PenaltyBreakAssignment: 2 |
| 105 | +PenaltyBreakBeforeFirstCallParameter: 19 |
| 106 | +PenaltyBreakComment: 300 |
| 107 | +PenaltyBreakFirstLessLess: 120 |
| 108 | +PenaltyBreakString: 1000 |
| 109 | +PenaltyBreakTemplateDeclaration: 10 |
| 110 | +PenaltyExcessCharacter: 1000000 |
| 111 | +PenaltyReturnTypeOnItsOwnLine: 60 |
| 112 | +PointerAlignment: Left |
| 113 | +ReflowComments: false |
| 114 | +SortIncludes: true |
| 115 | +SortUsingDeclarations: true |
| 116 | +SpaceAfterCStyleCast: true |
| 117 | +SpaceAfterLogicalNot: false |
| 118 | +SpaceAfterTemplateKeyword: true |
| 119 | +SpaceBeforeAssignmentOperators: true |
| 120 | +SpaceBeforeCpp11BracedList: false |
| 121 | +SpaceBeforeCtorInitializerColon: true |
| 122 | +SpaceBeforeInheritanceColon: true |
| 123 | +SpaceBeforeParens: ControlStatementsExceptForEachMacros |
| 124 | +SpaceBeforeRangeBasedForLoopColon: true |
| 125 | +SpaceInEmptyBlock: false |
| 126 | +SpaceInEmptyParentheses: false |
| 127 | +SpacesBeforeTrailingComments: 1 |
| 128 | +SpacesInAngles: false |
| 129 | +SpacesInConditionalStatement: false |
| 130 | +SpacesInContainerLiterals: true |
| 131 | +SpacesInCStyleCastParentheses: false |
| 132 | +SpacesInParentheses: false |
| 133 | +SpacesInSquareBrackets: false |
| 134 | +SpaceBeforeSquareBrackets: false |
| 135 | +Standard: Latest |
| 136 | +StatementMacros: |
| 137 | + - Q_UNUSED |
| 138 | + - QT_REQUIRE_VERSION |
| 139 | +TabWidth: 4 |
| 140 | +UseCRLF: false |
| 141 | +UseTab: Never |
| 142 | +WhitespaceSensitiveMacros: |
| 143 | + - STRINGIZE |
| 144 | + - PP_STRINGIZE |
| 145 | +TypenameMacros: |
| 146 | + - g_auto |
| 147 | + - g_autoptr |
| 148 | +... |
0 commit comments