Chris Wailes | 9773328 | 2021-03-12 12:04:54 -0800 | [diff] [blame] | 1 | --- |
| 2 | BasedOnStyle: Google |
| 3 | --- |
| 4 | |
| 5 | Language: Cpp |
| 6 | |
| 7 | AlignConsecutiveMacros: AcrossComments |
| 8 | AllowShortBlocksOnASingleLine: Empty |
| 9 | AllowShortCaseLabelsOnASingleLine: false |
Chris Wailes | 9773328 | 2021-03-12 12:04:54 -0800 | [diff] [blame] | 10 | AllowShortIfStatementsOnASingleLine: Never |
| 11 | AllowShortLoopsOnASingleLine: false |
| 12 | AttributeMacros: ['__', 'NO_RETURN'] |
| 13 | BinPackArguments: false |
| 14 | BinPackParameters: false |
| 15 | BreakConstructorInitializers: BeforeColon |
| 16 | BreakBeforeTernaryOperators: false |
| 17 | ColumnLimit: 100 |
| 18 | CommentPragmas: NOLINT:.* |
| 19 | ConstructorInitializerAllOnOneLineOrOnePerLine: true |
| 20 | Cpp11BracedListStyle: true |
| 21 | DerivePointerAlignment: false |
| 22 | FixNamespaceComments: true |
| 23 | PointerAlignment: Left |
Jiakai Zhang | 5592106 | 2021-11-18 10:40:17 +0000 | [diff] [blame] | 24 | TabWidth: 2 |