William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 1 | --- |
| 2 | Language: Cpp |
| 3 | # BasedOnStyle: LLVM |
| 4 | AccessModifierOffset: -2 |
| 5 | AlignAfterOpenBracket: Align |
| 6 | AlignConsecutiveAssignments: false |
| 7 | AlignConsecutiveDeclarations: false |
| 8 | AlignEscapedNewlines: Right |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 9 | AlignOperands: Align |
| 10 | AlignTrailingComments: |
| 11 | Kind: Always |
| 12 | OverEmptyLines: 1 |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 13 | AllowAllParametersOfDeclarationOnNextLine: true |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 14 | AllowShortBlocksOnASingleLine: Empty |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 15 | AllowShortCaseLabelsOnASingleLine: false |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 16 | AllowShortFunctionsOnASingleLine: Empty |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 17 | AllowShortIfStatementsOnASingleLine: Never |
| 18 | AllowShortLambdasOnASingleLine: true |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 19 | AllowShortLoopsOnASingleLine: false |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 20 | AlwaysBreakBeforeMultilineStrings: false |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 21 | BinPackArguments: true |
| 22 | BinPackParameters: true |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 23 | BitFieldColonSpacing: None |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 24 | BraceWrapping: |
| 25 | AfterCaseLabel: true |
| 26 | AfterClass: true |
| 27 | AfterControlStatement: true |
| 28 | AfterEnum: true |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 29 | AfterExternBlock: true |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 30 | AfterFunction: true |
| 31 | AfterNamespace: true |
| 32 | AfterObjCDeclaration: true |
| 33 | AfterStruct: true |
| 34 | AfterUnion: true |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 35 | BeforeCatch: true |
| 36 | BeforeElse: true |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 37 | BeforeLambdaBody: false |
| 38 | BeforeWhile: false |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 39 | IndentBraces: false |
| 40 | SplitEmptyFunction: false |
| 41 | SplitEmptyRecord: false |
| 42 | SplitEmptyNamespace: false |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 43 | BreakAfterAttributes: Never |
Patrick Williams | d980e4f | 2024-12-18 11:22:27 -0500 | [diff] [blame^] | 44 | BreakAfterReturnType: Automatic |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 45 | BreakBeforeBinaryOperators: None |
| 46 | BreakBeforeBraces: Custom |
| 47 | BreakBeforeTernaryOperators: true |
| 48 | BreakConstructorInitializers: AfterColon |
| 49 | BreakInheritanceList: AfterColon |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 50 | BreakStringLiterals: false |
Patrick Williams | d980e4f | 2024-12-18 11:22:27 -0500 | [diff] [blame^] | 51 | BreakTemplateDeclarations: Yes |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 52 | ColumnLimit: 80 |
| 53 | CommentPragmas: '^ IWYU pragma:' |
| 54 | CompactNamespaces: false |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 55 | ConstructorInitializerIndentWidth: 4 |
| 56 | ContinuationIndentWidth: 4 |
| 57 | Cpp11BracedListStyle: true |
| 58 | DerivePointerAlignment: false |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 59 | DisableFormat: false |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 60 | FixNamespaceComments: true |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 61 | ForEachMacros: |
| 62 | - foreach |
| 63 | - Q_FOREACH |
| 64 | - BOOST_FOREACH |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [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 | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 84 | IndentExternBlock: NoIndent |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 85 | IndentRequiresClause: true |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 86 | IndentWidth: 4 |
| 87 | IndentWrappedFunctionNames: true |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 88 | InsertNewlineAtEOF: true |
| 89 | KeepEmptyLinesAtTheStartOfBlocks: false |
Patrick Williams | c66ebc3 | 2024-08-16 15:21:56 -0400 | [diff] [blame] | 90 | LambdaBodyIndentation: Signature |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 91 | LineEnding: LF |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 92 | MacroBlockBegin: '' |
| 93 | MacroBlockEnd: '' |
| 94 | MaxEmptyLinesToKeep: 1 |
| 95 | NamespaceIndentation: None |
| 96 | ObjCBlockIndentWidth: 2 |
| 97 | ObjCSpaceAfterProperty: false |
| 98 | ObjCSpaceBeforeProtocolList: true |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 99 | PackConstructorInitializers: BinPack |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 100 | PenaltyBreakAssignment: 25 |
Patrick Williams | c66ebc3 | 2024-08-16 15:21:56 -0400 | [diff] [blame] | 101 | PenaltyBreakBeforeFirstCallParameter: 50 |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 102 | PenaltyBreakComment: 300 |
| 103 | PenaltyBreakFirstLessLess: 120 |
| 104 | PenaltyBreakString: 1000 |
Patrick Williams | c66ebc3 | 2024-08-16 15:21:56 -0400 | [diff] [blame] | 105 | PenaltyBreakTemplateDeclaration: 10 |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 106 | PenaltyExcessCharacter: 1000000 |
| 107 | PenaltyReturnTypeOnItsOwnLine: 60 |
Patrick Williams | c66ebc3 | 2024-08-16 15:21:56 -0400 | [diff] [blame] | 108 | PenaltyIndentedWhitespace: 1 |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 109 | PointerAlignment: Left |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 110 | QualifierAlignment: Left |
| 111 | ReferenceAlignment: Left |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 112 | ReflowComments: true |
Patrick Williams | 2be4523 | 2023-05-10 07:51:22 -0500 | [diff] [blame] | 113 | RequiresClausePosition: OwnLine |
| 114 | RequiresExpressionIndentation: Keyword |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 115 | SortIncludes: CaseSensitive |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 116 | SortUsingDeclarations: true |
| 117 | SpaceAfterCStyleCast: false |
| 118 | SpaceAfterTemplateKeyword: true |
| 119 | SpaceBeforeAssignmentOperators: true |
| 120 | SpaceBeforeCpp11BracedList: false |
| 121 | SpaceBeforeCtorInitializerColon: true |
| 122 | SpaceBeforeInheritanceColon: true |
| 123 | SpaceBeforeParens: ControlStatements |
| 124 | SpaceBeforeRangeBasedForLoopColon: true |
| 125 | SpaceInEmptyParentheses: false |
| 126 | SpacesBeforeTrailingComments: 1 |
Patrick Williams | 6084957 | 2023-10-20 11:19:52 -0500 | [diff] [blame] | 127 | SpacesInAngles: Never |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 128 | SpacesInContainerLiterals: true |
| 129 | SpacesInCStyleCastParentheses: false |
| 130 | SpacesInParentheses: false |
| 131 | SpacesInSquareBrackets: false |
| 132 | Standard: Latest |
| 133 | TabWidth: 4 |
| 134 | UseTab: Never |
| 135 | ... |
| 136 | |