Do not return errors from decl - store them in heap and return from typing
[hiphop-php.git] / hphp / .clang-format
blob29365575da4080a95ee74079abd63a5eb825efae
1 ---
2 AccessModifierOffset: 0
3 AlignAfterOpenBracket: Align
4 AlignEscapedNewlines: Right
5 AllowShortBlocksOnASingleLine: true
6 AllowShortCaseLabelsOnASingleLine: true
7 AllowShortFunctionsOnASingleLine: Inline
8 AllowShortIfStatementsOnASingleLine: true
9 AllowShortLoopsOnASingleLine: true
10 AlwaysBreakTemplateDeclarations: true
11 BinPackArguments: true
12 BinPackParameters: true
13 ColumnLimit: 80
14 ContinuationIndentWidth: 2
15 Cpp11BracedListStyle: false
16 FixNamespaceComments: true
17 IndentCaseLabels: true
18 IndentWidth: 2
19 PenaltyBreakFirstLessLess: 0
20 PenaltyReturnTypeOnItsOwnLine: 0
21 PointerAlignment: Left
22 SortIncludes: true
23 SpaceAfterCStyleCast: false
24 SpaceBeforeAssignmentOperators: true
25 SpaceBeforeParens: ControlStatements
26 SpaceInEmptyParentheses: false
27 SpacesBeforeTrailingComments: 1
28 SpacesInAngles:  false
29 SpacesInContainerLiterals: true
30 SpacesInCStyleCastParentheses: false
31 SpacesInParentheses: false
32 SpacesInSquareBrackets: false
33 Standard: Cpp11
34 UseTab: Never
35 ...