.clang-format (1562B) download
1{
2 "AlignAfterOpenBracket": "Align",
3 "AlignConsecutiveAssignments": true,
4 "AlignConsecutiveDeclarations": true,
5 "AlignConsecutiveMacros": true,
6 "AlignEscapedNewlines": true,
7 "AlignOperands": "AlignAfterOperator",
8 "AllowShortBlocksOnASingleLine": true,
9 "AllowShortIfStatementsOnASingleLine": true,
10 "AllowShortLoopsOnASingleLine": true,
11 "BreakBeforeBraces": "Attach",
12 "BreakBeforeTernaryOperators": true,
13 "BreakConstructorInitializers": "BeforeComma",
14 "BreakInheritanceList": "BeforeComma",
15 "BreakStringLiterals": false,
16 "ColumnLimit": 0,
17 "Cpp11BracedListStyle": false,
18 "FixNamespaceComments": true,
19 "IncludeBlocks": "Regroup",
20 "IndentCaseLabels": true,
21 "IndentPPDirectives": "AfterHash",
22 "IndentWidth": 4,
23 "MaxEmptyLinesToKeep": 2,
24 "NamespaceIndentation": "All",
25 "PointerAlignment": "Left",
26 "SortIncludes": true,
27 "SortUsingDeclarations": true,
28 "SpaceAfterCStyleCast": true,
29 "SpaceAfterLogicalNot": false,
30 "SpaceAfterTemplateKeyword": false,
31 "SpaceBeforeAssignmentOperators": true,
32 "SpaceBeforeCpp11BracedList": false,
33 "SpaceBeforeCtorInitializerColon": true,
34 "SpaceBeforeInheritanceColon": true,
35 "SpaceBeforeRangeBasedForLoopColon": true,
36 "SpaceBeforeSquareBrackets": false,
37 "SpaceInEmptyBlock": false,
38 "SpaceInEmptyParentheses": false,
39 "SpacesBeforeTrailingComments": 4,
40 "SpacesInAngles": false,
41 "SpacesInCStyleCastParentheses": false,
42 "SpacesInConditionalStatement": false,
43 "SpacesInContainerLiterals": false,
44 "SpacesInParentheses": false,
45 "SpacesInSquareBrackets": false,
46 "TabWidth": 4,
47 "UseTab": "ForIndentation"
48}