forked from wheybags/freeablo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
65 lines (65 loc) · 2.07 KB
/
.clang-format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"ColumnLimit": 140,
"MaxEmptyLinesToKeep": 1,
"KeepEmptyLinesAtTheStartOfBlocks": true,
"PenaltyBreakComment": 300,
"PenaltyBreakString": 1000,
"PenaltyExcessCharacter": 1000000,
"PenaltyBreakFirstLessLess": 120,
"PenaltyBreakBeforeFirstCallParameter": 19,
"PointerAlignment": "Left",
"DerivePointerAlignment": false,
"AccessModifierOffset": -2,
"Standard": "Cpp11",
"IndentCaseLabels": true,
"IndentWrappedFunctionNames": false,
"NamespaceIndentation": "All",
"SpacesBeforeTrailingComments": 1,
"BinPackParameters": true,
"BinPackArguments": true,
"ExperimentalAutoDetectBinPacking": false,
"AllowAllParametersOfDeclarationOnNextLine": false,
"PenaltyReturnTypeOnItsOwnLine": 200,
"ConstructorInitializerAllOnOneLineOrOnePerLine": true,
"BreakConstructorInitializersBeforeComma": true,
"AllowShortBlocksOnASingleLine": false,
"AllowShortIfStatementsOnASingleLine": false,
"AllowShortLoopsOnASingleLine": false,
"AllowShortCaseLabelsOnASingleLine": false,
"AllowShortFunctionsOnASingleLine": "Empty",
"AlignAfterOpenBracket": "Align",
"AlignOperands": true,
"AlignTrailingComments": true,
"AlignConsecutiveAssignments": false,
"AlignEscapedNewlinesLeft": false,
"IndentWidth": 4,
"TabWidth": 8,
"ConstructorInitializerIndentWidth": 2,
"AlwaysBreakAfterDefinitionReturnType": "None",
"AlwaysBreakTemplateDeclarations": true,
"AlwaysBreakBeforeMultilineStrings": false,
"UseTab": "Never",
"BreakBeforeBinaryOperators": "None",
"BreakBeforeTernaryOperators": true,
"BreakBeforeBraces": "Allman",
"Cpp11BracedListStyle": true,
"SpacesInParentheses": false,
"SpacesInAngles": false,
"SpacesInSquareBrackets": false,
"SpaceInEmptyParentheses": false,
"SpacesInCStyleCastParentheses": false,
"SpaceAfterCStyleCast": false,
"SpaceBeforeParens": "Never",
"SpaceBeforeAssignmentOperators": true,
"ContinuationIndentWidth": 2,
"CommentPragmas": "^ IWYU pragma:",
"DisableFormat": false,
"ForEachMacros": [
"foreach",
"Q_FOREACH",
"BOOST_FOREACH",
"foreach",
"Q_FOREACH",
"BOOST_FOREACH"
]
}