Justin Wood | c9bbb25 | 2020-03-03 10:03:58 -0800 | [diff] [blame] | 1 | --- |
| 2 | Language: Cpp |
Rob Walker | 6f43121 | 2020-03-13 11:56:19 -0700 | [diff] [blame] | 3 | # BasedOnStyle: WebKit |
| 4 | AccessModifierOffset: -4 |
| 5 | AlignAfterOpenBracket: Align |
| 6 | AlignConsecutiveAssignments: true |
| 7 | AlignConsecutiveDeclarations: false |
| 8 | AlignEscapedNewlines: Right |
| 9 | AlignOperands: false |
| 10 | AlignTrailingComments: true |
| 11 | AllowAllParametersOfDeclarationOnNextLine: true |
| 12 | AllowShortBlocksOnASingleLine: false |
| 13 | AllowShortCaseLabelsOnASingleLine: false |
| 14 | AllowShortFunctionsOnASingleLine: Inline |
| 15 | AllowShortIfStatementsOnASingleLine: false |
| 16 | AllowShortLoopsOnASingleLine: false |
| 17 | AlwaysBreakAfterDefinitionReturnType: None |
| 18 | AlwaysBreakAfterReturnType: None |
| 19 | AlwaysBreakBeforeMultilineStrings: false |
| 20 | AlwaysBreakTemplateDeclarations: true |
| 21 | BinPackArguments: true |
| 22 | BinPackParameters: true |
| 23 | BraceWrapping: |
| 24 | AfterClass: true |
| 25 | AfterControlStatement: true |
| 26 | AfterEnum: true |
| 27 | AfterFunction: true |
| 28 | AfterNamespace: false |
| 29 | AfterObjCDeclaration: true |
| 30 | AfterStruct: true |
| 31 | AfterUnion: true |
| 32 | BeforeCatch: false |
| 33 | BeforeElse: true |
| 34 | IndentBraces: false |
| 35 | SplitEmptyFunction: false |
| 36 | SplitEmptyRecord: true |
| 37 | SplitEmptyNamespace: true |
| 38 | BreakBeforeBinaryOperators: None |
| 39 | BreakBeforeBraces: Custom |
| 40 | BreakBeforeInheritanceComma: false |
| 41 | BreakBeforeTernaryOperators: true |
| 42 | BreakConstructorInitializersBeforeComma: false |
| 43 | BreakConstructorInitializers: AfterColon |
| 44 | BreakAfterJavaFieldAnnotations: false |
| 45 | BreakStringLiterals: true |
| 46 | ColumnLimit: 132 |
| 47 | CommentPragmas: '^ IWYU pragma:' |
| 48 | CompactNamespaces: false |
| 49 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 50 | ConstructorInitializerIndentWidth: 4 |
| 51 | ContinuationIndentWidth: 4 |
| 52 | Cpp11BracedListStyle: false |
| 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: '^<Weave/Core.*' |
| 63 | Priority: 0 |
| 64 | - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
| 65 | Priority: 2 |
| 66 | - Regex: '^(<|"(gtest|gmock|isl|json)/)' |
| 67 | Priority: 3 |
| 68 | - Regex: '.*' |
| 69 | Priority: 1 |
| 70 | IncludeIsMainRegex: '(Test)?$' |
| 71 | IndentCaseLabels: false |
| 72 | IndentWidth: 4 |
| 73 | IndentWrappedFunctionNames: false |
| 74 | JavaScriptQuotes: Leave |
| 75 | JavaScriptWrapImports: true |
| 76 | KeepEmptyLinesAtTheStartOfBlocks: true |
| 77 | MacroBlockBegin: '' |
| 78 | MacroBlockEnd: '' |
| 79 | MaxEmptyLinesToKeep: 1 |
| 80 | NamespaceIndentation: None |
| 81 | ObjCBlockIndentWidth: 4 |
| 82 | ObjCSpaceAfterProperty: true |
| 83 | ObjCSpaceBeforeProtocolList: true |
| 84 | PenaltyBreakAssignment: 2 |
| 85 | PenaltyBreakBeforeFirstCallParameter: 19 |
| 86 | PenaltyBreakComment: 300 |
| 87 | PenaltyBreakFirstLessLess: 120 |
| 88 | PenaltyBreakString: 1000 |
| 89 | PenaltyExcessCharacter: 1000000 |
| 90 | PenaltyReturnTypeOnItsOwnLine: 60 |
| 91 | PointerAlignment: Middle |
| 92 | ReflowComments: true |
Rob Walker | dc264b1 | 2020-05-19 17:11:14 -0700 | [diff] [blame] | 93 | SortIncludes: true |
Rob Walker | 6f43121 | 2020-03-13 11:56:19 -0700 | [diff] [blame] | 94 | SortUsingDeclarations: true |
| 95 | SpaceAfterCStyleCast: true |
| 96 | SpaceAfterTemplateKeyword: true |
| 97 | SpaceBeforeAssignmentOperators: true |
| 98 | SpaceBeforeParens: ControlStatements |
| 99 | SpaceInEmptyParentheses: false |
| 100 | SpacesBeforeTrailingComments: 1 |
| 101 | SpacesInAngles: false |
| 102 | SpacesInContainerLiterals: true |
| 103 | SpacesInCStyleCastParentheses: false |
| 104 | SpacesInParentheses: false |
| 105 | SpacesInSquareBrackets: false |
| 106 | Standard: Cpp11 |
| 107 | TabWidth: 8 |
| 108 | UseTab: Never |
Justin Wood | c9bbb25 | 2020-03-03 10:03:58 -0800 | [diff] [blame] | 109 | --- |
Justin Wood | c9bbb25 | 2020-03-03 10:03:58 -0800 | [diff] [blame] | 110 | Language: ObjC |
Rob Walker | 6f43121 | 2020-03-13 11:56:19 -0700 | [diff] [blame] | 111 | # BasedOnStyle: WebKit |
| 112 | AccessModifierOffset: -4 |
| 113 | AlignAfterOpenBracket: DontAlign |
| 114 | AlignConsecutiveAssignments: false |
| 115 | AlignConsecutiveDeclarations: false |
| 116 | AlignEscapedNewlines: Right |
| 117 | AlignOperands: false |
| 118 | AlignTrailingComments: false |
| 119 | AllowAllArgumentsOnNextLine: true |
| 120 | AllowAllConstructorInitializersOnNextLine: true |
| 121 | AllowAllParametersOfDeclarationOnNextLine: true |
| 122 | AllowShortBlocksOnASingleLine: false |
| 123 | AllowShortCaseLabelsOnASingleLine: false |
| 124 | AllowShortFunctionsOnASingleLine: All |
| 125 | AllowShortLambdasOnASingleLine: All |
| 126 | AllowShortIfStatementsOnASingleLine: Never |
| 127 | AllowShortLoopsOnASingleLine: false |
| 128 | AlwaysBreakAfterDefinitionReturnType: None |
| 129 | AlwaysBreakAfterReturnType: None |
| 130 | AlwaysBreakBeforeMultilineStrings: false |
| 131 | AlwaysBreakTemplateDeclarations: MultiLine |
| 132 | BinPackArguments: true |
| 133 | BinPackParameters: true |
| 134 | BraceWrapping: |
| 135 | AfterCaseLabel: false |
| 136 | AfterClass: false |
| 137 | AfterControlStatement: false |
| 138 | AfterEnum: true |
| 139 | AfterFunction: true |
| 140 | AfterNamespace: false |
| 141 | AfterObjCDeclaration: false |
| 142 | AfterStruct: false |
| 143 | AfterUnion: false |
| 144 | AfterExternBlock: false |
| 145 | BeforeCatch: false |
| 146 | BeforeElse: false |
| 147 | IndentBraces: false |
| 148 | SplitEmptyFunction: true |
| 149 | SplitEmptyRecord: true |
| 150 | SplitEmptyNamespace: true |
| 151 | BreakBeforeBinaryOperators: All |
| 152 | BreakBeforeBraces: WebKit |
| 153 | BreakBeforeInheritanceComma: false |
| 154 | BreakInheritanceList: BeforeColon |
| 155 | BreakBeforeTernaryOperators: true |
| 156 | BreakConstructorInitializersBeforeComma: false |
| 157 | BreakConstructorInitializers: BeforeComma |
| 158 | BreakAfterJavaFieldAnnotations: false |
| 159 | BreakStringLiterals: true |
| 160 | ColumnLimit: 132 |
| 161 | CommentPragmas: '^ IWYU pragma:' |
| 162 | CompactNamespaces: false |
| 163 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 164 | ConstructorInitializerIndentWidth: 4 |
| 165 | ContinuationIndentWidth: 4 |
| 166 | Cpp11BracedListStyle: false |
| 167 | DerivePointerAlignment: false |
| 168 | DisableFormat: false |
| 169 | ExperimentalAutoDetectBinPacking: false |
| 170 | FixNamespaceComments: false |
| 171 | ForEachMacros: |
| 172 | - foreach |
| 173 | - Q_FOREACH |
| 174 | - BOOST_FOREACH |
| 175 | IncludeBlocks: Preserve |
| 176 | IncludeCategories: |
| 177 | - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
| 178 | Priority: 2 |
| 179 | - Regex: '^(<|"(gtest|gmock|isl|json)/)' |
| 180 | Priority: 3 |
| 181 | - Regex: '.*' |
| 182 | Priority: 1 |
| 183 | IncludeIsMainRegex: '(Test)?$' |
| 184 | IndentCaseLabels: false |
| 185 | IndentPPDirectives: None |
| 186 | IndentWidth: 4 |
| 187 | IndentWrappedFunctionNames: false |
| 188 | JavaScriptQuotes: Leave |
| 189 | JavaScriptWrapImports: true |
| 190 | KeepEmptyLinesAtTheStartOfBlocks: true |
| 191 | MacroBlockBegin: '' |
| 192 | MacroBlockEnd: '' |
| 193 | MaxEmptyLinesToKeep: 1 |
| 194 | NamespaceIndentation: Inner |
| 195 | ObjCBinPackProtocolList: Auto |
| 196 | ObjCBlockIndentWidth: 4 |
| 197 | ObjCSpaceAfterProperty: true |
| 198 | ObjCSpaceBeforeProtocolList: true |
| 199 | PenaltyBreakAssignment: 2 |
| 200 | PenaltyBreakBeforeFirstCallParameter: 19 |
| 201 | PenaltyBreakComment: 300 |
| 202 | PenaltyBreakFirstLessLess: 120 |
| 203 | PenaltyBreakString: 1000 |
| 204 | PenaltyBreakTemplateDeclaration: 10 |
| 205 | PenaltyExcessCharacter: 1000000 |
| 206 | PenaltyReturnTypeOnItsOwnLine: 60 |
| 207 | PointerAlignment: Middle |
| 208 | ReflowComments: true |
Rob Walker | dc264b1 | 2020-05-19 17:11:14 -0700 | [diff] [blame] | 209 | SortIncludes: true |
Rob Walker | 6f43121 | 2020-03-13 11:56:19 -0700 | [diff] [blame] | 210 | SortUsingDeclarations: true |
| 211 | SpaceAfterCStyleCast: true |
| 212 | SpaceAfterLogicalNot: false |
| 213 | SpaceAfterTemplateKeyword: true |
| 214 | SpaceBeforeAssignmentOperators: true |
| 215 | SpaceBeforeCpp11BracedList: true |
| 216 | SpaceBeforeCtorInitializerColon: true |
| 217 | SpaceBeforeInheritanceColon: true |
| 218 | SpaceBeforeParens: ControlStatements |
| 219 | SpaceBeforeRangeBasedForLoopColon: true |
| 220 | SpaceInEmptyParentheses: false |
| 221 | SpacesBeforeTrailingComments: 1 |
| 222 | SpacesInAngles: false |
| 223 | SpacesInContainerLiterals: true |
| 224 | SpacesInCStyleCastParentheses: false |
| 225 | SpacesInParentheses: false |
| 226 | SpacesInSquareBrackets: false |
| 227 | Standard: Cpp11 |
| 228 | StatementMacros: |
| 229 | - Q_UNUSED |
| 230 | - QT_REQUIRE_VERSION |
| 231 | TabWidth: 8 |
| 232 | UseTab: Never |
Vivien Nicolas | aa2eb3e | 2020-11-07 04:17:27 +0100 | [diff] [blame] | 233 | --- |
| 234 | Language: JavaScript |
Vivien Nicolas | 252b094 | 2020-12-04 17:35:21 +0100 | [diff] [blame] | 235 | BasedOnStyle: WebKit |
| 236 | AlignConsecutiveAssignments: true |
| 237 | AllowShortFunctionsOnASingleLine: None |
| 238 | IndentWidth: 2 |
Vivien Nicolas | aa2eb3e | 2020-11-07 04:17:27 +0100 | [diff] [blame] | 239 | ColumnLimit: 132 |
Justin Wood | c9bbb25 | 2020-03-03 10:03:58 -0800 | [diff] [blame] | 240 | ... |