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 | --- |
Karsten Sperling | f299acb | 2023-09-27 15:39:32 +1300 | [diff] [blame] | 110 | Language: ObjC |
| 111 | BasedOnStyle: WebKit |
| 112 | Standard: c++17 |
Rob Walker | 6f43121 | 2020-03-13 11:56:19 -0700 | [diff] [blame] | 113 | PointerAlignment: Middle |
Rob Walker | 6f43121 | 2020-03-13 11:56:19 -0700 | [diff] [blame] | 114 | SpaceAfterCStyleCast: true |
Karsten Sperling | f299acb | 2023-09-27 15:39:32 +1300 | [diff] [blame] | 115 | SpaceInEmptyBlock: false |
| 116 | ObjCBreakBeforeNestedBlockParam: false |
Vivien Nicolas | aa2eb3e | 2020-11-07 04:17:27 +0100 | [diff] [blame] | 117 | --- |
| 118 | Language: JavaScript |
Vivien Nicolas | 252b094 | 2020-12-04 17:35:21 +0100 | [diff] [blame] | 119 | BasedOnStyle: WebKit |
| 120 | AlignConsecutiveAssignments: true |
| 121 | AllowShortFunctionsOnASingleLine: None |
| 122 | IndentWidth: 2 |
Vivien Nicolas | aa2eb3e | 2020-11-07 04:17:27 +0100 | [diff] [blame] | 123 | ColumnLimit: 132 |
Justin Wood | c9bbb25 | 2020-03-03 10:03:58 -0800 | [diff] [blame] | 124 | ... |