[Adaptation Layer] Added rive-tizen adaptation layer class.
[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 SortIncludes: false
21 BraceWrapping:
22   AfterEnum: true
23   AfterClass: true
24   AfterControlStatement: true
25   AfterNamespace: true
26   AfterFunction: true
27   AfterStruct: true
28   SplitEmptyFunction: true
29   AfterObjCDeclaration: true
30   AfterStruct: true
31   AfterUnion: true
32   AfterExternBlock: true
33   BeforeCatch: true
34   BeforeElse: true
35   AfterCaseLabel: true