Gyorgy Szing | 68224ca | 2021-04-19 10:13:18 +0200 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | --- |
| 8 | AccessModifierOffset: -8 |
| 9 | AlignAfterOpenBracket: Align |
| 10 | AlignConsecutiveMacros: true |
| 11 | AlignConsecutiveAssignments: false |
| 12 | AlignConsecutiveDeclarations: false |
| 13 | AlignEscapedNewlines: Left |
| 14 | AlignOperands: true |
| 15 | AlignTrailingComments: false |
| 16 | AllowAllArgumentsOnNextLine: false |
| 17 | AllowAllConstructorInitializersOnNextLine: false |
| 18 | AllowAllParametersOfDeclarationOnNextLine: false |
| 19 | AllowShortBlocksOnASingleLine: false |
| 20 | AllowShortCaseLabelsOnASingleLine: false |
| 21 | AllowShortFunctionsOnASingleLine: None |
| 22 | AllowShortLambdasOnASingleLine: All |
| 23 | AllowShortIfStatementsOnASingleLine: false |
| 24 | AllowShortLoopsOnASingleLine: false |
| 25 | AlwaysBreakAfterDefinitionReturnType: None |
| 26 | AlwaysBreakAfterReturnType: None |
| 27 | AlwaysBreakBeforeMultilineStrings: false |
| 28 | AlwaysBreakTemplateDeclarations: false |
| 29 | BinPackArguments: true |
| 30 | BinPackParameters: true |
| 31 | BraceWrapping: |
| 32 | AfterCaseLabel: false |
| 33 | AfterClass: false |
| 34 | AfterControlStatement: false |
| 35 | AfterEnum: false |
| 36 | AfterFunction: true |
| 37 | AfterNamespace: true |
| 38 | AfterObjCDeclaration: false |
| 39 | AfterStruct: false |
| 40 | AfterUnion: false |
| 41 | AfterExternBlock: false |
| 42 | BeforeCatch: false |
| 43 | BeforeElse: false |
| 44 | IndentBraces: false |
| 45 | SplitEmptyFunction: true |
| 46 | SplitEmptyRecord: true |
| 47 | SplitEmptyNamespace: true |
| 48 | BeforeLambdaBody: false |
| 49 | BeforeWhile: false |
| 50 | BreakBeforeBinaryOperators: None |
| 51 | BreakBeforeBraces: Custom |
| 52 | BreakBeforeInheritanceComma: false |
| 53 | BreakInheritanceList: BeforeComma |
| 54 | BreakBeforeTernaryOperators: false |
| 55 | BreakConstructorInitializers: BeforeComma |
| 56 | BreakAfterJavaFieldAnnotations: false |
| 57 | BreakStringLiterals: false |
| 58 | ColumnLimit: 100 |
| 59 | CommentPragmas: '^ IWYU pragma:' |
| 60 | CompactNamespaces: false |
| 61 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 62 | ConstructorInitializerIndentWidth: 8 |
| 63 | ContinuationIndentWidth: 8 |
| 64 | Cpp11BracedListStyle: false |
| 65 | DeriveLineEnding: false |
| 66 | DerivePointerAlignment: false |
| 67 | ExperimentalAutoDetectBinPacking: false |
| 68 | FixNamespaceComments: false |
| 69 | IncludeBlocks: Regroup |
| 70 | IncludeCategories: |
| 71 | - Regex: '^<.+>$' |
| 72 | Priority: 1 |
| 73 | - Regex: '^".+"$' |
| 74 | Priority: 2 |
| 75 | - Regex: '.*' |
| 76 | Priority: 0 |
| 77 | IncludeIsMainRegex: (Test)?$ |
| 78 | IncludeIsMainSourceRegex: '' |
| 79 | IndentCaseLabels: false |
| 80 | IndentPPDirectives: None |
| 81 | IndentWidth: 8 |
| 82 | IndentWrappedFunctionNames: false |
| 83 | JavaScriptQuotes: Leave |
| 84 | JavaScriptWrapImports: true |
| 85 | KeepEmptyLinesAtTheStartOfBlocks: false |
| 86 | MacroBlockBegin: '' |
| 87 | MacroBlockEnd: '' |
| 88 | MaxEmptyLinesToKeep: 1 |
| 89 | NamespaceIndentation: None |
| 90 | ObjCBinPackProtocolList: Auto |
| 91 | ObjCBlockIndentWidth: 8 |
| 92 | ObjCSpaceAfterProperty: true |
| 93 | ObjCSpaceBeforeProtocolList: true |
| 94 | PenaltyBreakAssignment: 10 |
| 95 | PenaltyBreakBeforeFirstCallParameter: 30 |
| 96 | PenaltyBreakComment: 10 |
| 97 | PenaltyBreakFirstLessLess: 0 |
| 98 | PenaltyBreakString: 10 |
| 99 | PenaltyBreakTemplateDeclaration: 10 |
| 100 | PenaltyExcessCharacter: 100 |
| 101 | PenaltyReturnTypeOnItsOwnLine: 60 |
| 102 | PointerAlignment: Right |
| 103 | ReflowComments: false |
| 104 | |
| 105 | SortIncludes: true |
| 106 | SortUsingDeclarations: false |
| 107 | SpaceAfterCStyleCast: false |
| 108 | SpaceAfterLogicalNot: false |
| 109 | SpaceAfterTemplateKeyword: true |
| 110 | SpaceBeforeAssignmentOperators: true |
| 111 | SpaceBeforeCpp11BracedList: false |
| 112 | SpaceBeforeCtorInitializerColon: true |
| 113 | SpaceBeforeInheritanceColon: true |
| 114 | SpaceBeforeParens: ControlStatements |
| 115 | SpaceBeforeRangeBasedForLoopColon: true |
| 116 | SpaceBeforeSquareBrackets: false |
| 117 | SpaceInEmptyBlock: false |
| 118 | SpaceInEmptyParentheses: false |
| 119 | SpacesBeforeTrailingComments: 1 |
| 120 | SpacesInAngles: false |
| 121 | SpacesInConditionalStatement: false |
| 122 | SpacesInContainerLiterals: false |
| 123 | SpacesInCStyleCastParentheses: false |
| 124 | SpacesInParentheses: false |
| 125 | SpacesInSquareBrackets: false |
| 126 | Standard: Cpp03 |
| 127 | TabWidth: 8 |
| 128 | UseCRLF: false |
| 129 | UseTab: Always |
| 130 | |