22 lines
495 B
YAML
22 lines
495 B
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
---
|
|
BasedOnStyle: LLVM
|
|
UseTab: ForIndentation
|
|
IndentWidth: 8
|
|
TabWidth: 8
|
|
ContinuationIndentWidth: 8
|
|
ColumnLimit: 80
|
|
AlignConsecutiveDeclarations: AcrossComments
|
|
AlignTrailingComments: true
|
|
SpacesBeforeTrailingComments: 1
|
|
PointerAlignment: Left
|
|
SpaceBeforeParens: ControlStatements
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterStruct: false
|
|
AfterEnum: false
|
|
AfterFunction: false
|
|
AfterControlStatement: false
|
|
SortIncludes: true
|
|
ReflowComments: true
|
|
...
|