Set default visiblity of functions to hidden
[platform/core/uifw/vulkan-wsi-tizen.git] / .clang-format
1 BasedOnStyle: LLVM
2
3 AccessModifierOffset: -3
4
5 AlignEscapedNewlinesLeft: true
6
7 AlignTrailingComments: true
8
9 AllowAllParametersOfDeclarationOnNextLine: false
10
11 AllowShortBlocksOnASingleLine: false
12
13 AllowShortCaseLabelsOnASingleLine: false
14
15 AllowShortFunctionsOnASingleLine: None
16
17 AllowShortIfStatementsOnASingleLine: false
18
19 AllowShortLoopsOnASingleLine: false
20
21 AlwaysBreakAfterDefinitionReturnType: false
22
23 AlwaysBreakBeforeMultilineStrings: false
24
25 AlwaysBreakTemplateDeclarations: true
26
27 BinPackArguments: true
28
29 BinPackParameters: true
30
31 BreakBeforeBinaryOperators: None
32
33 BreakBeforeBraces: Allman
34
35 BreakBeforeTernaryOperators: false
36
37 BreakConstructorInitializersBeforeComma: true
38
39 ColumnLimit: 120
40
41 CommentPragmas: '^ *'
42
43 ConstructorInitializerAllOnOneLineOrOnePerLine: false
44
45 ConstructorInitializerIndentWidth: 3
46
47 ContinuationIndentWidth: 3
48
49 Cpp11BracedListStyle: false
50
51 DisableFormat: false
52
53 ForEachMacros: ['']
54
55 IndentCaseLabels: false
56
57 IndentWidth: 3
58
59 IndentWrappedFunctionNames: false
60
61 KeepEmptyLinesAtTheStartOfBlocks: true
62
63 Language: Cpp
64
65 MaxEmptyLinesToKeep: 1
66
67 NamespaceIndentation: None
68
69 PenaltyBreakBeforeFirstCallParameter: 19
70
71 PenaltyBreakComment: 300
72
73 PenaltyBreakFirstLessLess: 120
74
75 PenaltyBreakString: 1000
76
77 PenaltyExcessCharacter: 1000000
78
79 PenaltyReturnTypeOnItsOwnLine: 1000000000
80
81 PointerAlignment: Right
82
83 SortIncludes: false
84
85 SpaceAfterCStyleCast: false
86
87 SpaceBeforeAssignmentOperators: true
88
89 SpaceBeforeParens: ControlStatements
90
91 SpaceInEmptyParentheses: false
92
93 SpacesBeforeTrailingComments: 1
94
95 SpacesInAngles: false
96
97 SpacesInCStyleCastParentheses: false
98
99 SpacesInContainerLiterals: false
100
101 SpacesInParentheses: false
102
103 SpacesInSquareBrackets: false
104
105 Standard: Cpp11
106
107 TabWidth: 3
108
109 UseTab: Never