submodule: add rive-cpp to rive-tizen as submodule
[platform/core/uifw/rive-tizen.git] / submodule / .clang-format
1 BasedOnStyle: LLVM
2 IndentWidth: 4
3 UseTab: ForIndentation
4 TabWidth: 4
5 BreakBeforeBraces: Allman
6 IndentCaseLabels: true
7 Language: Cpp
8 # Force pointers to the type for C++.
9 DerivePointerAlignment: false
10 PointerAlignment: Left
11 NamespaceIndentation: All
12 AccessModifierOffset: -4
13 BreakConstructorInitializers: AfterColon
14 ConstructorInitializerAllOnOneLineOrOnePerLine: true
15 ColumnLimit: 80
16 BinPackArguments: false
17 BinPackParameters: false
18 AlignAfterOpenBracket: Align
19 BreakBeforeBraces: Custom
20 BraceWrapping:
21   AfterEnum: true
22   AfterClass: true
23   AfterControlStatement: true
24   AfterNamespace: true
25   AfterFunction: true
26   AfterStruct: true
27   SplitEmptyFunction: true
28   AfterObjCDeclaration: true
29   AfterStruct: true
30   AfterUnion: true
31   AfterExternBlock: true
32   BeforeCatch: true
33   BeforeElse: true
34   AfterCaseLabel: true