|
| 1 | +{ |
| 2 | + "AccessModifierOffset": -2, |
| 3 | + "AlignAfterOpenBracket": "Align", |
| 4 | + "AlignArrayOfStructures": "None", |
| 5 | + "AlignConsecutiveAssignments": "None", |
| 6 | + "AlignConsecutiveBitFields": "None", |
| 7 | + "AlignConsecutiveDeclarations": "None", |
| 8 | + "AlignConsecutiveMacros": "None", |
| 9 | + "AlignEscapedNewlines": "DontAlign", |
| 10 | + "AlignOperands": "Align", |
| 11 | + "AlignTrailingComments": true, |
| 12 | + "AllowAllArgumentsOnNextLine": true, |
| 13 | + "AllowAllConstructorInitializersOnNextLine": true, |
| 14 | + "AllowAllParametersOfDeclarationOnNextLine": true, |
| 15 | + "AllowShortBlocksOnASingleLine": "Always", |
| 16 | + "AllowShortCaseLabelsOnASingleLine": true, |
| 17 | + "AllowShortEnumsOnASingleLine": true, |
| 18 | + "AllowShortFunctionsOnASingleLine": "Empty", |
| 19 | + "AllowShortIfStatementsOnASingleLine": "AllIfsAndElse", |
| 20 | + "AllowShortLambdasOnASingleLine": "Empty", |
| 21 | + "AllowShortLoopsOnASingleLine": true, |
| 22 | + "AlwaysBreakAfterDefinitionReturnType": "None", |
| 23 | + "AlwaysBreakAfterReturnType": "None", |
| 24 | + "AlwaysBreakBeforeMultilineStrings": false, |
| 25 | + "AlwaysBreakTemplateDeclarations": "No", |
| 26 | + "AttributeMacros": ["__capability"], |
| 27 | + "BasedOnStyle": "LLVM", |
| 28 | + "BinPackArguments": true, |
| 29 | + "BinPackParameters": true, |
| 30 | + "BitFieldColonSpacing": "Both", |
| 31 | + "BraceWrapping": { |
| 32 | + "AfterCaseLabel": false, |
| 33 | + "AfterClass": false, |
| 34 | + "AfterControlStatement": "Never", |
| 35 | + "AfterEnum": false, |
| 36 | + "AfterFunction": false, |
| 37 | + "AfterNamespace": false, |
| 38 | + "AfterObjCDeclaration": false, |
| 39 | + "AfterStruct": false, |
| 40 | + "AfterUnion": false, |
| 41 | + "AfterExternBlock": false, |
| 42 | + "BeforeCatch": false, |
| 43 | + "BeforeElse": false, |
| 44 | + "BeforeLambdaBody": false, |
| 45 | + "BeforeWhile": false, |
| 46 | + "IndentBraces": false, |
| 47 | + "SplitEmptyFunction": true, |
| 48 | + "SplitEmptyRecord": true, |
| 49 | + "SplitEmptyNamespace": true |
| 50 | + }, |
| 51 | + "BreakAfterJavaFieldAnnotations": false, |
| 52 | + "BreakBeforeBinaryOperators": "NonAssignment", |
| 53 | + "BreakBeforeBraces": "Attach", |
| 54 | + "BreakBeforeConceptDeclarations": false, |
| 55 | + "BreakBeforeInheritanceComma": false, |
| 56 | + "BreakBeforeTernaryOperators": true, |
| 57 | + "BreakConstructorInitializers": "BeforeColon", |
| 58 | + "BreakConstructorInitializersBeforeComma": false, |
| 59 | + "BreakInheritanceList": "BeforeColon", |
| 60 | + "BreakStringLiterals": false, |
| 61 | + "ColumnLimit": 0, |
| 62 | + "CommentPragmas": "", |
| 63 | + "CompactNamespaces": false, |
| 64 | + "ConstructorInitializerAllOnOneLineOrOnePerLine": false, |
| 65 | + "ConstructorInitializerIndentWidth": 2, |
| 66 | + "ContinuationIndentWidth": 2, |
| 67 | + "Cpp11BracedListStyle": false, |
| 68 | + "DeriveLineEnding": true, |
| 69 | + "DerivePointerAlignment": true, |
| 70 | + "DisableFormat": false, |
| 71 | + "EmptyLineAfterAccessModifier": "Leave", |
| 72 | + "EmptyLineBeforeAccessModifier": "Leave", |
| 73 | + "ExperimentalAutoDetectBinPacking": false, |
| 74 | + "FixNamespaceComments": false, |
| 75 | + "ForEachMacros": ["foreach", "Q_FOREACH", "BOOST_FOREACH"], |
| 76 | + "IfMacros": ["KJ_IF_MAYBE"], |
| 77 | + "IncludeBlocks": "Preserve", |
| 78 | + "IncludeCategories": [ |
| 79 | + { |
| 80 | + "Regex": "^\"(llvm|llvm-c|clang|clang-c)/", |
| 81 | + "Priority": 2, |
| 82 | + "SortPriority": 0, |
| 83 | + "CaseSensitive": false |
| 84 | + }, |
| 85 | + { |
| 86 | + "Regex": "^(<|\"(gtest|gmock|isl|json)/)", |
| 87 | + "Priority": 3, |
| 88 | + "SortPriority": 0, |
| 89 | + "CaseSensitive": false |
| 90 | + }, |
| 91 | + { |
| 92 | + "Regex": ".*", |
| 93 | + "Priority": 1, |
| 94 | + "SortPriority": 0, |
| 95 | + "CaseSensitive": false |
| 96 | + } |
| 97 | + ], |
| 98 | + "IncludeIsMainRegex": "", |
| 99 | + "IncludeIsMainSourceRegex": "", |
| 100 | + "IndentAccessModifiers": false, |
| 101 | + "IndentCaseBlocks": true, |
| 102 | + "IndentCaseLabels": true, |
| 103 | + "IndentExternBlock": "Indent", |
| 104 | + "IndentGotoLabels": false, |
| 105 | + "IndentPPDirectives": "None", |
| 106 | + "IndentRequires": true, |
| 107 | + "IndentWidth": 2, |
| 108 | + "IndentWrappedFunctionNames": false, |
| 109 | + "InsertTrailingCommas": "None", |
| 110 | + "JavaScriptQuotes": "Leave", |
| 111 | + "JavaScriptWrapImports": true, |
| 112 | + "KeepEmptyLinesAtTheStartOfBlocks": true, |
| 113 | + "LambdaBodyIndentation": "Signature", |
| 114 | + "Language": "Cpp", |
| 115 | + "MacroBlockBegin": "", |
| 116 | + "MacroBlockEnd": "", |
| 117 | + "MaxEmptyLinesToKeep": 100000, |
| 118 | + "NamespaceIndentation": "None", |
| 119 | + "ObjCBinPackProtocolList": "Auto", |
| 120 | + "ObjCBlockIndentWidth": 2, |
| 121 | + "ObjCBreakBeforeNestedBlockParam": true, |
| 122 | + "ObjCSpaceAfterProperty": false, |
| 123 | + "ObjCSpaceBeforeProtocolList": true, |
| 124 | + "PPIndentWidth": -1, |
| 125 | + "PackConstructorInitializers": "BinPack", |
| 126 | + "PenaltyBreakAssignment": 1, |
| 127 | + "PenaltyBreakBeforeFirstCallParameter": 1, |
| 128 | + "PenaltyBreakComment": 1, |
| 129 | + "PenaltyBreakFirstLessLess": 1, |
| 130 | + "PenaltyBreakOpenParenthesis": 1, |
| 131 | + "PenaltyBreakString": 1, |
| 132 | + "PenaltyBreakTemplateDeclaration": 1, |
| 133 | + "PenaltyExcessCharacter": 1, |
| 134 | + "PenaltyIndentedWhitespace": 1, |
| 135 | + "PenaltyReturnTypeOnItsOwnLine": 1, |
| 136 | + "PointerAlignment": "Right", |
| 137 | + "QualifierAlignment": "Leave", |
| 138 | + "ReferenceAlignment": "Pointer", |
| 139 | + "ReflowComments": false, |
| 140 | + "RemoveBracesLLVM": false, |
| 141 | + "SeparateDefinitionBlocks": "Leave", |
| 142 | + "ShortNamespaceLines": 0, |
| 143 | + "SortIncludes": "Never", |
| 144 | + "SortJavaStaticImport": "Before", |
| 145 | + "SortUsingDeclarations": false, |
| 146 | + "SpaceAfterCStyleCast": false, |
| 147 | + "SpaceAfterLogicalNot": false, |
| 148 | + "SpaceAfterTemplateKeyword": false, |
| 149 | + "SpaceAroundPointerQualifiers": "Default", |
| 150 | + "SpaceBeforeAssignmentOperators": true, |
| 151 | + "SpaceBeforeCaseColon": false, |
| 152 | + "SpaceBeforeCpp11BracedList": false, |
| 153 | + "SpaceBeforeCtorInitializerColon": true, |
| 154 | + "SpaceBeforeInheritanceColon": true, |
| 155 | + "SpaceBeforeParens": "ControlStatements", |
| 156 | + "SpaceBeforeParensOptions": { |
| 157 | + "AfterControlStatements": true, |
| 158 | + "AfterForeachMacros": true, |
| 159 | + "AfterFunctionDefinitionName": false, |
| 160 | + "AfterFunctionDeclarationName": false, |
| 161 | + "AfterIfMacros": true, |
| 162 | + "AfterOverloadedOperator": false, |
| 163 | + "BeforeNonEmptyParentheses": false |
| 164 | + }, |
| 165 | + "SpaceBeforeRangeBasedForLoopColon": true, |
| 166 | + "SpaceBeforeSquareBrackets": false, |
| 167 | + "SpaceInEmptyBlock": false, |
| 168 | + "SpaceInEmptyParentheses": false, |
| 169 | + "SpacesBeforeTrailingComments": 2, |
| 170 | + "SpacesInAngles": "Leave", |
| 171 | + "SpacesInCStyleCastParentheses": false, |
| 172 | + "SpacesInConditionalStatement": false, |
| 173 | + "SpacesInContainerLiterals": false, |
| 174 | + "SpacesInLineCommentPrefix": { |
| 175 | + "Minimum": 0, |
| 176 | + "Maximum": -1 |
| 177 | + }, |
| 178 | + "SpacesInParentheses": false, |
| 179 | + "SpacesInSquareBrackets": false, |
| 180 | + "Standard": "Auto", |
| 181 | + "StatementAttributeLikeMacros": ["Q_EMIT"], |
| 182 | + "StatementMacros": ["Q_UNUSED", "QT_REQUIRE_VERSION"], |
| 183 | + "TabWidth": 2, |
| 184 | + "UseCRLF": false, |
| 185 | + "UseTab": "Never", |
| 186 | + "WhitespaceSensitiveMacros": [ |
| 187 | + "STRINGIZE", |
| 188 | + "PP_STRINGIZE", |
| 189 | + "BOOST_PP_STRINGIZE", |
| 190 | + "NS_SWIFT_NAME", |
| 191 | + "CF_SWIFT_NAME" |
| 192 | + ] |
| 193 | +} |
0 commit comments