|
| 1 | +BasedOnStyle: Mozilla |
| 2 | +AccessModifierOffset: '-4' |
| 3 | +AlignAfterOpenBracket: BlockIndent |
| 4 | +AlignEscapedNewlines: Left |
| 5 | +AllowAllArgumentsOnNextLine: false |
| 6 | +AllowAllParametersOfDeclarationOnNextLine: false |
| 7 | +AllowShortBlocksOnASingleLine: false |
| 8 | +AllowShortCaseLabelsOnASingleLine: false |
| 9 | +AllowShortFunctionsOnASingleLine: false |
| 10 | +AllowShortIfStatementsOnASingleLine: false |
| 11 | +# Forbid one line lambdas because clang-format makes a weird split when |
| 12 | +# single instructions lambdas are too long. |
| 13 | +AllowShortLambdasOnASingleLine: Empty |
| 14 | +AllowShortLoopsOnASingleLine: false |
| 15 | +AlwaysBreakAfterReturnType: None |
| 16 | +AlwaysBreakAfterDefinitionReturnType: None |
| 17 | +AlwaysBreakTemplateDeclarations: Yes |
| 18 | +SpaceAfterTemplateKeyword: true |
| 19 | +BinPackArguments: false |
| 20 | +BinPackParameters: false |
| 21 | +BreakBeforeBinaryOperators: NonAssignment |
| 22 | +BreakBeforeBraces: Allman |
| 23 | +BreakBeforeTernaryOperators: true |
| 24 | +BreakConstructorInitializers: BeforeComma |
| 25 | +BreakInheritanceList: AfterComma |
| 26 | +BreakStringLiterals: false |
| 27 | +ColumnLimit: '110' |
| 28 | +ConstructorInitializerIndentWidth: '4' |
| 29 | +ContinuationIndentWidth: '4' |
| 30 | +Cpp11BracedListStyle: true |
| 31 | +DerivePointerAlignment: false |
| 32 | +DisableFormat: false |
| 33 | +ExperimentalAutoDetectBinPacking: true |
| 34 | +EmptyLineAfterAccessModifier: Always |
| 35 | +EmptyLineBeforeAccessModifier: Always |
| 36 | +IncludeBlocks: Regroup |
| 37 | +IncludeCategories: |
| 38 | +- Regex: <[^.]+> |
| 39 | + Priority: 1 |
| 40 | +- Regex: <xtensor/.+> |
| 41 | + Priority: 3 |
| 42 | +- Regex: <.+> |
| 43 | + Priority: 2 |
| 44 | +- Regex: '"xtensor/.+"' |
| 45 | + Priority: 4 |
| 46 | +- Regex: '".+"' |
| 47 | + Priority: 5 |
| 48 | +IndentCaseLabels: true |
| 49 | +IndentWidth: '4' |
| 50 | +IndentWrappedFunctionNames: false |
| 51 | +InsertTrailingCommas: Wrapped |
| 52 | +KeepEmptyLinesAtTheStartOfBlocks: false |
| 53 | +LambdaBodyIndentation: Signature |
| 54 | +Language: Cpp |
| 55 | +MaxEmptyLinesToKeep: '2' |
| 56 | +NamespaceIndentation: All |
| 57 | +ObjCBlockIndentWidth: '4' |
| 58 | +ObjCSpaceAfterProperty: false |
| 59 | +ObjCSpaceBeforeProtocolList: false |
| 60 | +PointerAlignment: Left |
| 61 | +PackConstructorInitializers: Never |
| 62 | +PenaltyBreakAssignment: 100000 |
| 63 | +PenaltyBreakBeforeFirstCallParameter: 0 |
| 64 | +PenaltyBreakComment: 10 |
| 65 | +PenaltyBreakOpenParenthesis: 0 |
| 66 | +PenaltyBreakTemplateDeclaration: 0 |
| 67 | +PenaltyExcessCharacter: 10 |
| 68 | +PenaltyIndentedWhitespace: 0 |
| 69 | +PenaltyReturnTypeOnItsOwnLine: 10 |
| 70 | +ReflowComments: true |
| 71 | +SeparateDefinitionBlocks: Always |
| 72 | +SortIncludes: CaseInsensitive |
| 73 | +SortUsingDeclarations: true |
| 74 | +SpaceAfterCStyleCast: true |
| 75 | +SpaceBeforeAssignmentOperators: true |
| 76 | +SpaceBeforeParens: ControlStatements |
| 77 | +SpaceInEmptyParentheses: false |
| 78 | +SpacesBeforeTrailingComments: '2' |
| 79 | +SpacesInAngles: false |
| 80 | +SpacesInCStyleCastParentheses: false |
| 81 | +SpacesInContainerLiterals: false |
| 82 | +SpacesInParentheses: false |
| 83 | +SpacesInSquareBrackets: false |
| 84 | +Standard: c++14 |
| 85 | +TabWidth: '4' |
| 86 | +UseTab: Never |
0 commit comments