mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
35 lines
825 B
YAML
35 lines
825 B
YAML
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
UseTab: Never
|
|
TabWidth: 4
|
|
BreakBeforeBraces: Allman
|
|
IndentCaseLabels: true
|
|
Language: Cpp
|
|
# Force pointers to the type for C++.
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
NamespaceIndentation: All
|
|
AccessModifierOffset: -4
|
|
BreakConstructorInitializers: AfterColon
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
ColumnLimit: 100
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
AlignAfterOpenBracket: Align
|
|
BreakBeforeBraces: Custom
|
|
SortIncludes: false
|
|
BraceWrapping:
|
|
AfterEnum: false
|
|
AfterClass: false
|
|
AfterControlStatement: MultiLine
|
|
AfterNamespace: false
|
|
AfterFunction: false
|
|
AfterStruct: false
|
|
SplitEmptyFunction: false
|
|
AfterObjCDeclaration: true
|
|
AfterUnion: false
|
|
AfterExternBlock: false
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
AfterCaseLabel: false
|