mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-26 17:37:34 +00:00
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
---
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
# SPDX-FileCopyrightText: 2020, Collabora, Ltd.
|
|
Language: Cpp
|
|
BasedOnStyle: LLVM
|
|
Standard: Auto
|
|
|
|
# Includes
|
|
SortIncludes: false
|
|
|
|
# Spacing and Blank Lines
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Right
|
|
#AlignEscapedNewlines: DontAlign
|
|
#AlignConsecutiveDeclarations: false
|
|
#AlignConsecutiveAssignments: false
|
|
MaxEmptyLinesToKeep: 3
|
|
|
|
# Indentation
|
|
IndentWidth: 8
|
|
TabWidth: 8
|
|
UseTab: ForIndentation
|
|
AccessModifierOffset: -8
|
|
IndentCaseLabels: false
|
|
NamespaceIndentation: Inner
|
|
|
|
# Line length/reflow
|
|
# Longer for tests because of high levels of indentation
|
|
ColumnLimit: 120
|
|
ReflowComments: true
|
|
|
|
|
|
# Line breaks
|
|
AlwaysBreakAfterReturnType: All
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortCaseLabelsOnASingleLine: true
|
|
AlwaysBreakBeforeMultilineStrings: true
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterEnum: true
|
|
AfterStruct: true
|
|
AfterClass: true
|
|
SplitEmptyFunction: false
|
|
AfterFunction: true
|
|
AfterNamespace: false
|
|
|
|
# false means either "all on one line" or "each on their own",
|
|
# won't put more than one on a line if they don't all fit.
|
|
BinPackArguments: true
|
|
BinPackParameters: false
|