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