blob: 95ce962fd73da048b665c0b34a86413f1e2bc590 [file] [log] [blame]
Chris Wailes97733282021-03-12 12:04:54 -08001---
2BasedOnStyle: Google
3---
4
5Language: Cpp
6
7AlignConsecutiveMacros: AcrossComments
8AllowShortBlocksOnASingleLine: Empty
9AllowShortCaseLabelsOnASingleLine: false
10AllowShortFunctionsOnASingleLine: Empty
11AllowShortIfStatementsOnASingleLine: Never
12AllowShortLoopsOnASingleLine: false
13AttributeMacros: ['__', 'NO_RETURN']
14BinPackArguments: false
15BinPackParameters: false
16BreakConstructorInitializers: BeforeColon
17BreakBeforeTernaryOperators: false
18ColumnLimit: 100
19CommentPragmas: NOLINT:.*
20ConstructorInitializerAllOnOneLineOrOnePerLine: true
21Cpp11BracedListStyle: true
22DerivePointerAlignment: false
23FixNamespaceComments: true
24PointerAlignment: Left
25TabWidth: 2