1# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 2--- 3BasedOnStyle: GNU 4Standard: c++11 5AlignConsecutiveDeclarations: false 6AllowShortBlocksOnASingleLine: Always 7AllowShortEnumsOnASingleLine: true 8AllowShortFunctionsOnASingleLine: All 9AllowShortLambdasOnASingleLine: All 10AlwaysBreakAfterReturnType: All 11BreakConstructorInitializers: BeforeColon 12ConstructorInitializerAllOnOneLineOrOnePerLine: true 13ConstructorInitializerIndentWidth: 2 14Cpp11BracedListStyle: true 15IndentWidth: 2 16AlignAfterOpenBracket: Align 17BinPackArguments: false 18BinPackParameters: false 19BreakStringLiterals: false 20PointerAlignment: Left 21SortUsingDeclarations: false 22SpaceAfterCStyleCast: true 23SpaceBeforeParens: ControlStatements 24TabWidth: 8 25UseTab: Always 26BreakBeforeBinaryOperators: NonAssignment 27--- 28