Chris Kay | 654c2ce | 2023-03-08 17:48:09 +0000 | [diff] [blame] | 1 | --- |
| 2 | AccessModifierOffset: -4 |
| 3 | AlignAfterOpenBracket: Align |
| 4 | AlignArrayOfStructures: None |
| 5 | AlignConsecutiveMacros: None |
| 6 | AlignConsecutiveAssignments: None |
| 7 | AlignConsecutiveBitFields: None |
| 8 | AlignConsecutiveDeclarations: None |
| 9 | AlignEscapedNewlines: Left |
| 10 | AlignOperands: Align |
| 11 | AlignTrailingComments: false |
| 12 | AllowAllArgumentsOnNextLine: true |
| 13 | AllowAllParametersOfDeclarationOnNextLine: false |
| 14 | AllowShortEnumsOnASingleLine: true |
| 15 | AllowShortBlocksOnASingleLine: Never |
| 16 | AllowShortCaseLabelsOnASingleLine: false |
| 17 | AllowShortFunctionsOnASingleLine: None |
| 18 | AllowShortLambdasOnASingleLine: All |
| 19 | AllowShortIfStatementsOnASingleLine: Never |
| 20 | AllowShortLoopsOnASingleLine: false |
| 21 | AlwaysBreakAfterDefinitionReturnType: None |
| 22 | AlwaysBreakAfterReturnType: None |
| 23 | AlwaysBreakBeforeMultilineStrings: false |
| 24 | AlwaysBreakTemplateDeclarations: MultiLine |
| 25 | AttributeMacros: |
| 26 | - __capability |
| 27 | BinPackArguments: true |
| 28 | BinPackParameters: true |
| 29 | BraceWrapping: |
| 30 | AfterCaseLabel: false |
| 31 | AfterClass: false |
| 32 | AfterControlStatement: Never |
| 33 | AfterEnum: false |
| 34 | AfterFunction: true |
| 35 | AfterNamespace: true |
| 36 | AfterObjCDeclaration: false |
| 37 | AfterStruct: false |
| 38 | AfterUnion: false |
| 39 | AfterExternBlock: false |
| 40 | BeforeCatch: false |
| 41 | BeforeElse: false |
| 42 | BeforeLambdaBody: false |
| 43 | BeforeWhile: false |
| 44 | IndentBraces: false |
| 45 | SplitEmptyFunction: true |
| 46 | SplitEmptyRecord: true |
| 47 | SplitEmptyNamespace: true |
| 48 | BreakBeforeBinaryOperators: None |
| 49 | BreakBeforeConceptDeclarations: true |
| 50 | BreakBeforeBraces: Custom |
| 51 | BreakBeforeInheritanceComma: false |
| 52 | BreakInheritanceList: BeforeColon |
| 53 | BreakBeforeTernaryOperators: false |
| 54 | BreakConstructorInitializersBeforeComma: false |
| 55 | BreakConstructorInitializers: BeforeComma |
| 56 | BreakAfterJavaFieldAnnotations: false |
| 57 | BreakStringLiterals: false |
| 58 | ColumnLimit: 80 |
| 59 | CommentPragmas: '^ IWYU pragma:' |
| 60 | QualifierAlignment: Leave |
| 61 | CompactNamespaces: false |
| 62 | ConstructorInitializerIndentWidth: 8 |
| 63 | ContinuationIndentWidth: 8 |
| 64 | Cpp11BracedListStyle: false |
| 65 | DeriveLineEnding: true |
| 66 | DerivePointerAlignment: false |
| 67 | DisableFormat: false |
| 68 | EmptyLineAfterAccessModifier: Never |
| 69 | EmptyLineBeforeAccessModifier: LogicalBlock |
| 70 | ExperimentalAutoDetectBinPacking: false |
| 71 | PackConstructorInitializers: BinPack |
| 72 | BasedOnStyle: '' |
| 73 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 74 | AllowAllConstructorInitializersOnNextLine: true |
| 75 | FixNamespaceComments: false |
| 76 | ForEachMacros: |
| 77 | - fdt_for_each_compatible_node |
| 78 | - fdt_for_each_property_offset |
| 79 | - fdt_for_each_subnode |
| 80 | - for_each_err_record_info |
| 81 | - for_each_subscriber |
| 82 | IfMacros: |
| 83 | - KJ_IF_MAYBE |
| 84 | IncludeBlocks: Regroup |
| 85 | IncludeCategories: |
| 86 | - Regex: '^<(assert|complex|ctype|errno|fenv|float|inttypes|iso646|limits|locale|math|setjmp|signal|stdalign|stdarg|stdatomic|stdbool|stdckdint|stddef|stdint|stdio|stdlib|stdnoreturn|string|tgmath|threads|time|uchar|wchar|wctype)\.h>$' |
| 87 | Priority: 0 |
| 88 | SortPriority: 0 |
| 89 | CaseSensitive: false |
| 90 | - Regex: '^<lib/(compiler-rt|libfdt|mbedtls|zlib)/.+>$' |
| 91 | Priority: 1 |
| 92 | SortPriority: 0 |
| 93 | CaseSensitive: false |
| 94 | - Regex: '^<(platform(_def)?\.h)|(plat[_/].+)>$' |
| 95 | Priority: 2 |
| 96 | SortPriority: 0 |
| 97 | CaseSensitive: false |
| 98 | - Regex: '^<.+>$' |
| 99 | Priority: 3 |
| 100 | SortPriority: 0 |
| 101 | CaseSensitive: false |
| 102 | - Regex: '^".+"$' |
| 103 | Priority: 4 |
| 104 | SortPriority: 0 |
| 105 | CaseSensitive: false |
| 106 | IncludeIsMainRegex: '(Test)?$' |
| 107 | IncludeIsMainSourceRegex: '' |
| 108 | IndentAccessModifiers: false |
| 109 | IndentCaseLabels: false |
| 110 | IndentCaseBlocks: false |
| 111 | IndentGotoLabels: false |
| 112 | IndentPPDirectives: None |
| 113 | IndentExternBlock: AfterExternBlock |
| 114 | IndentRequires: false |
| 115 | IndentWidth: 8 |
| 116 | IndentWrappedFunctionNames: false |
| 117 | InsertTrailingCommas: None |
| 118 | JavaScriptQuotes: Leave |
| 119 | JavaScriptWrapImports: true |
| 120 | KeepEmptyLinesAtTheStartOfBlocks: false |
| 121 | LambdaBodyIndentation: Signature |
| 122 | MacroBlockBegin: '' |
| 123 | MacroBlockEnd: '' |
| 124 | MaxEmptyLinesToKeep: 1 |
| 125 | NamespaceIndentation: None |
| 126 | ObjCBinPackProtocolList: Auto |
| 127 | ObjCBlockIndentWidth: 8 |
| 128 | ObjCBreakBeforeNestedBlockParam: true |
| 129 | ObjCSpaceAfterProperty: true |
| 130 | ObjCSpaceBeforeProtocolList: true |
| 131 | PenaltyBreakAssignment: 10 |
| 132 | PenaltyBreakBeforeFirstCallParameter: 30 |
| 133 | PenaltyBreakComment: 10 |
| 134 | PenaltyBreakFirstLessLess: 0 |
| 135 | PenaltyBreakOpenParenthesis: 0 |
| 136 | PenaltyBreakString: 10 |
| 137 | PenaltyBreakTemplateDeclaration: 10 |
| 138 | PenaltyExcessCharacter: 100 |
| 139 | PenaltyReturnTypeOnItsOwnLine: 60 |
| 140 | PenaltyIndentedWhitespace: 0 |
| 141 | PointerAlignment: Right |
| 142 | PPIndentWidth: -1 |
| 143 | ReferenceAlignment: Pointer |
| 144 | ReflowComments: false |
| 145 | RemoveBracesLLVM: false |
| 146 | SeparateDefinitionBlocks: Leave |
| 147 | ShortNamespaceLines: 1 |
| 148 | SortIncludes: CaseInsensitive |
| 149 | SortJavaStaticImport: Before |
| 150 | SortUsingDeclarations: false |
| 151 | SpaceAfterCStyleCast: false |
| 152 | SpaceAfterLogicalNot: false |
| 153 | SpaceAfterTemplateKeyword: true |
| 154 | SpaceBeforeAssignmentOperators: true |
| 155 | SpaceBeforeCaseColon: false |
| 156 | SpaceBeforeCpp11BracedList: false |
| 157 | SpaceBeforeCtorInitializerColon: true |
| 158 | SpaceBeforeInheritanceColon: true |
| 159 | SpaceBeforeParens: ControlStatementsExceptControlMacros |
| 160 | SpaceBeforeParensOptions: |
| 161 | AfterControlStatements: true |
| 162 | AfterForeachMacros: false |
| 163 | AfterFunctionDefinitionName: false |
| 164 | AfterFunctionDeclarationName: false |
| 165 | AfterIfMacros: false |
| 166 | AfterOverloadedOperator: false |
| 167 | BeforeNonEmptyParentheses: false |
| 168 | SpaceAroundPointerQualifiers: Default |
| 169 | SpaceBeforeRangeBasedForLoopColon: true |
| 170 | SpaceInEmptyBlock: false |
| 171 | SpaceInEmptyParentheses: false |
| 172 | SpacesBeforeTrailingComments: 1 |
| 173 | SpacesInAngles: Never |
| 174 | SpacesInConditionalStatement: false |
| 175 | SpacesInContainerLiterals: false |
| 176 | SpacesInCStyleCastParentheses: false |
| 177 | SpacesInLineCommentPrefix: |
| 178 | Minimum: 1 |
| 179 | Maximum: -1 |
| 180 | SpacesInParentheses: false |
| 181 | SpacesInSquareBrackets: false |
| 182 | SpaceBeforeSquareBrackets: false |
| 183 | BitFieldColonSpacing: Both |
| 184 | Standard: c++03 |
| 185 | StatementAttributeLikeMacros: |
| 186 | - Q_EMIT |
| 187 | StatementMacros: |
| 188 | - Q_UNUSED |
| 189 | - QT_REQUIRE_VERSION |
| 190 | TabWidth: 8 |
| 191 | UseCRLF: false |
| 192 | UseTab: Always |
| 193 | WhitespaceSensitiveMacros: |
| 194 | - STRINGIZE |
| 195 | - PP_STRINGIZE |
| 196 | - BOOST_PP_STRINGIZE |
| 197 | - NS_SWIFT_NAME |
| 198 | - CF_SWIFT_NAME |
| 199 | ... |