28 lines
779 B
Plaintext
28 lines
779 B
Plaintext
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
|
---
|
||
|
|
BasedOnStyle: GNU
|
||
|
|
Standard: c++11
|
||
|
|
AlignConsecutiveDeclarations: false
|
||
|
|
AllowShortBlocksOnASingleLine: Always
|
||
|
|
AllowShortEnumsOnASingleLine: true
|
||
|
|
AllowShortFunctionsOnASingleLine: All
|
||
|
|
AllowShortLambdasOnASingleLine: All
|
||
|
|
AlwaysBreakAfterReturnType: All
|
||
|
|
BreakConstructorInitializers: BeforeColon
|
||
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
||
|
|
ConstructorInitializerIndentWidth: 2
|
||
|
|
Cpp11BracedListStyle: true
|
||
|
|
IndentWidth: 2
|
||
|
|
AlignAfterOpenBracket: Align
|
||
|
|
BinPackArguments: false
|
||
|
|
BinPackParameters: false
|
||
|
|
BreakStringLiterals: false
|
||
|
|
PointerAlignment: Left
|
||
|
|
SortUsingDeclarations: false
|
||
|
|
SpaceAfterCStyleCast: true
|
||
|
|
SpaceBeforeParens: ControlStatements
|
||
|
|
TabWidth: 8
|
||
|
|
UseTab: Always
|
||
|
|
BreakBeforeBinaryOperators: NonAssignment
|
||
|
|
---
|