|
| 1 | +AccessModifierOffset: -2 |
| 2 | +AlignAfterOpenBracket: DontAlign |
| 3 | +AlignConsecutiveAssignments: false |
| 4 | +AlignConsecutiveDeclarations: false |
| 5 | +AlignEscapedNewlines: Left |
| 6 | +AlignOperands: true |
| 7 | +AlignTrailingComments: false |
| 8 | +AllowAllParametersOfDeclarationOnNextLine: false |
| 9 | +AllowShortBlocksOnASingleLine: true |
| 10 | +AllowShortCaseLabelsOnASingleLine: false |
| 11 | +AllowShortFunctionsOnASingleLine: All |
| 12 | +AllowShortIfStatementsOnASingleLine: true |
| 13 | +AllowShortLoopsOnASingleLine: true |
| 14 | +AlwaysBreakAfterDefinitionReturnType: None |
| 15 | +AlwaysBreakAfterReturnType: None |
| 16 | +AlwaysBreakBeforeMultilineStrings: true |
| 17 | +AlwaysBreakTemplateDeclarations: false |
| 18 | +BinPackArguments: false |
| 19 | +BinPackParameters: false |
| 20 | +BraceWrapping: |
| 21 | + AfterClass: true |
| 22 | + AfterControlStatement: false |
| 23 | + AfterEnum: false |
| 24 | + AfterFunction: true |
| 25 | + AfterNamespace: false |
| 26 | + AfterObjCDeclaration: false |
| 27 | + AfterStruct: true |
| 28 | + AfterUnion: false |
| 29 | + BeforeCatch: false |
| 30 | + BeforeElse: false |
| 31 | + IndentBraces: false |
| 32 | + SplitEmptyFunction: false |
| 33 | + SplitEmptyNamespace: true |
| 34 | + SplitEmptyRecord: true |
| 35 | +BreakAfterJavaFieldAnnotations: true |
| 36 | +BreakBeforeBinaryOperators: NonAssignment |
| 37 | +BreakBeforeBraces: Custom |
| 38 | +BreakBeforeInheritanceComma: true |
| 39 | +BreakBeforeTernaryOperators: true |
| 40 | +BreakConstructorInitializers: BeforeColon |
| 41 | +BreakConstructorInitializersBeforeComma: false |
| 42 | +BreakStringLiterals: true |
| 43 | +ColumnLimit: 120 |
| 44 | +CommentPragmas: '^ IWYU pragma:' |
| 45 | +CompactNamespaces: false |
| 46 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 47 | +ConstructorInitializerIndentWidth: 2 |
| 48 | +ContinuationIndentWidth: 2 |
| 49 | +Cpp11BracedListStyle: false |
| 50 | +DerivePointerAlignment: false |
| 51 | +DisableFormat: false |
| 52 | +ExperimentalAutoDetectBinPacking: true |
| 53 | +FixNamespaceComments: true |
| 54 | +ForEachMacros: |
| 55 | +- foreach |
| 56 | +- Q_FOREACH |
| 57 | +- BOOST_FOREACH |
| 58 | +IncludeCategories: |
| 59 | +- Priority: 2 |
| 60 | + Regex: ^"(llvm|llvm-c|clang|clang-c)/ |
| 61 | +- Priority: 3 |
| 62 | + Regex: ^(<|"(gtest|gmock|isl|json)/) |
| 63 | +- Priority: 1 |
| 64 | + Regex: .* |
| 65 | +IncludeIsMainRegex: (Test)?$ |
| 66 | +IndentCaseLabels: false |
| 67 | +IndentWidth: 2 |
| 68 | +IndentWrappedFunctionNames: true |
| 69 | +JavaScriptQuotes: Leave |
| 70 | +JavaScriptWrapImports: true |
| 71 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 72 | +Language: Cpp |
| 73 | +MacroBlockBegin: '' |
| 74 | +MacroBlockEnd: '' |
| 75 | +MaxEmptyLinesToKeep: 2 |
| 76 | +NamespaceIndentation: Inner |
| 77 | +ObjCBlockIndentWidth: 7 |
| 78 | +ObjCSpaceAfterProperty: true |
| 79 | +ObjCSpaceBeforeProtocolList: false |
| 80 | +PointerAlignment: Right |
| 81 | +ReflowComments: true |
| 82 | +SortIncludes: true |
| 83 | +SortUsingDeclarations: false |
| 84 | +SpaceAfterCStyleCast: false |
| 85 | +SpaceAfterTemplateKeyword: false |
| 86 | +SpaceBeforeAssignmentOperators: true |
| 87 | +SpaceBeforeParens: ControlStatements |
| 88 | +SpaceInEmptyParentheses: false |
| 89 | +SpacesBeforeTrailingComments: 0 |
| 90 | +SpacesInAngles: false |
| 91 | +SpacesInCStyleCastParentheses: false |
| 92 | +SpacesInContainerLiterals: true |
| 93 | +SpacesInParentheses: false |
| 94 | +SpacesInSquareBrackets: false |
| 95 | +Standard: c++20 |
| 96 | +TabWidth: 8 |
| 97 | +UseTab: Never |
| 98 | + |
0 commit comments