|
| 1 | +--- |
| 2 | +Language: Cpp |
| 3 | +# BasedOnStyle: WebKit |
| 4 | +AccessModifierOffset: -4 |
| 5 | +AlignAfterOpenBracket: Align |
| 6 | +AlignConsecutiveAssignments: false |
| 7 | +AlignConsecutiveDeclarations: false |
| 8 | +AlignEscapedNewlines: Left |
| 9 | +AlignOperands: true |
| 10 | +AlignTrailingComments: false |
| 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: false |
| 22 | +BinPackParameters: false |
| 23 | +BraceWrapping: |
| 24 | + AfterClass: true |
| 25 | + AfterControlStatement: true |
| 26 | + AfterEnum: true |
| 27 | + AfterFunction: true |
| 28 | + AfterNamespace: true |
| 29 | + AfterObjCDeclaration: false |
| 30 | + AfterStruct: true |
| 31 | + AfterUnion: true |
| 32 | + BeforeCatch: false |
| 33 | + BeforeElse: false |
| 34 | + IndentBraces: false |
| 35 | + SplitEmptyFunction: true |
| 36 | + SplitEmptyRecord: true |
| 37 | + SplitEmptyNamespace: true |
| 38 | +BreakBeforeBinaryOperators: All |
| 39 | +BreakBeforeBraces: Custom |
| 40 | +BreakBeforeInheritanceComma: false |
| 41 | +BreakBeforeTernaryOperators: true |
| 42 | +BreakConstructorInitializersBeforeComma: true |
| 43 | +BreakConstructorInitializers: BeforeComma |
| 44 | +BreakAfterJavaFieldAnnotations: false |
| 45 | +BreakStringLiterals: true |
| 46 | +ColumnLimit: 100 |
| 47 | +CommentPragmas: '^ IWYU pragma:' |
| 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 | +ForEachMacros: |
| 58 | + - foreach |
| 59 | + - Q_FOREACH |
| 60 | + - BOOST_FOREACH |
| 61 | +IncludeCategories: |
| 62 | + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
| 63 | + Priority: 2 |
| 64 | + - Regex: '^(<|"(gtest|gmock|isl|json)/)' |
| 65 | + Priority: 3 |
| 66 | + - Regex: '.*' |
| 67 | + Priority: 1 |
| 68 | +IncludeIsMainRegex: '(Test)?$' |
| 69 | +IndentCaseLabels: false |
| 70 | +IndentWidth: 4 |
| 71 | +IndentWrappedFunctionNames: false |
| 72 | +JavaScriptQuotes: Leave |
| 73 | +JavaScriptWrapImports: true |
| 74 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 75 | +MacroBlockBegin: '' |
| 76 | +MacroBlockEnd: '' |
| 77 | +MaxEmptyLinesToKeep: 1 |
| 78 | +NamespaceIndentation: None |
| 79 | +ObjCBlockIndentWidth: 4 |
| 80 | +ObjCSpaceAfterProperty: true |
| 81 | +ObjCSpaceBeforeProtocolList: true |
| 82 | +PenaltyBreakAssignment: 10 |
| 83 | +PenaltyBreakBeforeFirstCallParameter: 1000 |
| 84 | +PenaltyBreakComment: 10 |
| 85 | +PenaltyBreakString: 10 |
| 86 | +PenaltyExcessCharacter: 100 |
| 87 | +PenaltyReturnTypeOnItsOwnLine: 5 |
| 88 | +PointerAlignment: Left |
| 89 | +ReflowComments: true |
| 90 | +SortIncludes: true |
| 91 | +SortUsingDeclarations: true |
| 92 | +SpaceAfterCStyleCast: false |
| 93 | +SpaceAfterTemplateKeyword: true |
| 94 | +SpaceBeforeAssignmentOperators: true |
| 95 | +SpaceBeforeParens: ControlStatements |
| 96 | +SpaceInEmptyParentheses: false |
| 97 | +SpacesBeforeTrailingComments: 1 |
| 98 | +SpacesInAngles: false |
| 99 | +SpacesInContainerLiterals: true |
| 100 | +SpacesInCStyleCastParentheses: false |
| 101 | +SpacesInParentheses: false |
| 102 | +SpacesInSquareBrackets: false |
| 103 | +Standard: Cpp11 |
| 104 | +TabWidth: 4 |
| 105 | +UseTab: Never |
0 commit comments