Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 1 | --- |
| 2 | Language: Cpp |
| 3 | # BasedOnStyle: LLVM |
| 4 | AccessModifierOffset: -2 |
| 5 | AlignAfterOpenBracket: Align |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 6 | AlignConsecutiveAssignments: false |
Zane Shelley | 9b41feb | 2022-07-13 10:24:16 -0500 | [diff] [blame] | 7 | AlignConsecutiveDeclarations: false |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 8 | AlignEscapedNewlines: Right |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 9 | AlignOperands: Align |
| 10 | AlignTrailingComments: |
| 11 | Kind: Always |
| 12 | OverEmptyLines: 1 |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 13 | AllowAllParametersOfDeclarationOnNextLine: true |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 14 | AllowShortBlocksOnASingleLine: Empty |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 15 | AllowShortCaseLabelsOnASingleLine: false |
| 16 | AllowShortFunctionsOnASingleLine: Empty |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 17 | AllowShortIfStatementsOnASingleLine: Never |
| 18 | AllowShortLambdasOnASingleLine: true |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 19 | AllowShortLoopsOnASingleLine: false |
| 20 | AlwaysBreakAfterReturnType: None |
| 21 | AlwaysBreakBeforeMultilineStrings: false |
| 22 | AlwaysBreakTemplateDeclarations: Yes |
| 23 | BinPackArguments: true |
| 24 | BinPackParameters: true |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 25 | BitFieldColonSpacing: None |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 26 | BraceWrapping: |
Zane Shelley | cac5dc6 | 2020-06-03 17:09:22 -0500 | [diff] [blame] | 27 | AfterCaseLabel: true |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 28 | AfterClass: true |
Zane Shelley | 9b41feb | 2022-07-13 10:24:16 -0500 | [diff] [blame] | 29 | AfterControlStatement: true |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 30 | AfterEnum: true |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 31 | AfterExternBlock: true |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 32 | AfterFunction: true |
| 33 | AfterNamespace: true |
| 34 | AfterObjCDeclaration: true |
| 35 | AfterStruct: true |
| 36 | AfterUnion: true |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 37 | BeforeCatch: true |
| 38 | BeforeElse: true |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 39 | BeforeLambdaBody: false |
| 40 | BeforeWhile: false |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 41 | IndentBraces: false |
| 42 | SplitEmptyFunction: false |
| 43 | SplitEmptyRecord: false |
| 44 | SplitEmptyNamespace: false |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 45 | BreakAfterAttributes: Never |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 46 | BreakBeforeBinaryOperators: None |
| 47 | BreakBeforeBraces: Custom |
| 48 | BreakBeforeTernaryOperators: true |
| 49 | BreakConstructorInitializers: AfterColon |
| 50 | BreakInheritanceList: AfterColon |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 51 | BreakStringLiterals: false |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 52 | ColumnLimit: 80 |
| 53 | CommentPragmas: '^ IWYU pragma:' |
| 54 | CompactNamespaces: false |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 55 | ConstructorInitializerIndentWidth: 4 |
| 56 | ContinuationIndentWidth: 4 |
| 57 | Cpp11BracedListStyle: true |
| 58 | DerivePointerAlignment: false |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 59 | DisableFormat: false |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 60 | FixNamespaceComments: true |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 61 | ForEachMacros: |
| 62 | - foreach |
| 63 | - Q_FOREACH |
| 64 | - BOOST_FOREACH |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 65 | IncludeBlocks: Regroup |
| 66 | IncludeCategories: |
| 67 | - Regex: '^[<"](gtest|gmock)' |
| 68 | Priority: 7 |
| 69 | - Regex: '^"config.h"' |
| 70 | Priority: -1 |
| 71 | - Regex: '^".*\.h"' |
| 72 | Priority: 1 |
| 73 | - Regex: '^".*\.hpp"' |
| 74 | Priority: 2 |
| 75 | - Regex: '^<.*\.h>' |
| 76 | Priority: 3 |
| 77 | - Regex: '^<.*\.hpp>' |
| 78 | Priority: 4 |
| 79 | - Regex: '^<.*' |
| 80 | Priority: 5 |
| 81 | - Regex: '.*' |
| 82 | Priority: 6 |
| 83 | IndentCaseLabels: true |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 84 | IndentExternBlock: NoIndent |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 85 | IndentRequiresClause: true |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 86 | IndentWidth: 4 |
| 87 | IndentWrappedFunctionNames: true |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 88 | InsertNewlineAtEOF: true |
Zane Shelley | b82cbf7 | 2022-06-27 10:28:06 -0500 | [diff] [blame] | 89 | KeepEmptyLinesAtTheStartOfBlocks: false |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 90 | LambdaBodyIndentation: OuterScope |
| 91 | LineEnding: LF |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 92 | MacroBlockBegin: '' |
| 93 | MacroBlockEnd: '' |
| 94 | MaxEmptyLinesToKeep: 1 |
| 95 | NamespaceIndentation: None |
| 96 | ObjCBlockIndentWidth: 2 |
| 97 | ObjCSpaceAfterProperty: false |
| 98 | ObjCSpaceBeforeProtocolList: true |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 99 | PackConstructorInitializers: BinPack |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 100 | PenaltyBreakAssignment: 25 |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 101 | PenaltyBreakBeforeFirstCallParameter: 19 |
| 102 | PenaltyBreakComment: 300 |
| 103 | PenaltyBreakFirstLessLess: 120 |
| 104 | PenaltyBreakString: 1000 |
| 105 | PenaltyExcessCharacter: 1000000 |
| 106 | PenaltyReturnTypeOnItsOwnLine: 60 |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 107 | PenaltyIndentedWhitespace: 0 |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 108 | PointerAlignment: Left |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 109 | QualifierAlignment: Left |
| 110 | ReferenceAlignment: Left |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 111 | ReflowComments: true |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 112 | RequiresClausePosition: OwnLine |
| 113 | RequiresExpressionIndentation: Keyword |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 114 | SortIncludes: CaseSensitive |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 115 | SortUsingDeclarations: true |
| 116 | SpaceAfterCStyleCast: false |
| 117 | SpaceAfterTemplateKeyword: true |
| 118 | SpaceBeforeAssignmentOperators: true |
| 119 | SpaceBeforeCpp11BracedList: false |
| 120 | SpaceBeforeCtorInitializerColon: true |
| 121 | SpaceBeforeInheritanceColon: true |
| 122 | SpaceBeforeParens: ControlStatements |
| 123 | SpaceBeforeRangeBasedForLoopColon: true |
| 124 | SpaceInEmptyParentheses: false |
| 125 | SpacesBeforeTrailingComments: 1 |
Patrick Williams | 7435fc0 | 2023-10-20 11:19:50 -0500 | [diff] [blame^] | 126 | SpacesInAngles: Never |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 127 | SpacesInContainerLiterals: true |
| 128 | SpacesInCStyleCastParentheses: false |
| 129 | SpacesInParentheses: false |
| 130 | SpacesInSquareBrackets: false |
Zane Shelley | cac5dc6 | 2020-06-03 17:09:22 -0500 | [diff] [blame] | 131 | Standard: Latest |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 132 | TabWidth: 4 |
| 133 | UseTab: Never |
Ben Tyner | 6c1c3a1 | 2020-01-09 09:17:50 -0600 | [diff] [blame] | 134 | ... |
| 135 | |