Files
rive-cpp/.clang-format
2022-03-28 13:11:18 -06:00

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