1--- 2BasedOnStyle: Google 3--- 4 5Language: Cpp 6 7AlignConsecutiveMacros: AcrossComments 8AllowShortBlocksOnASingleLine: Empty 9AllowShortCaseLabelsOnASingleLine: false 10AllowShortIfStatementsOnASingleLine: 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 24TabWidth: 2 25