/ _clang-format
_clang-format
 1  AlignAfterOpenBracket: Align
 2  AlignConsecutiveAssignments: true
 3  AlignConsecutiveBitFields: true
 4  AlignConsecutiveDeclarations: true
 5  AlignConsecutiveMacros: true
 6  AlignEscapedNewlines: Left
 7  AlignOperands: true
 8  AlignTrailingComments: true
 9  AllowAllParametersOfDeclarationOnNextLine: true
10  AllowShortBlocksOnASingleLine: true
11  AllowShortCaseLabelsOnASingleLine: true
12  AllowShortFunctionsOnASingleLine: false
13  AllowShortIfStatementsOnASingleLine: false
14  AllowShortLambdasOnASingleLine: false
15  AllowShortLoopsOnASingleLine: true
16  AlwaysBreakBeforeMultilineStrings: false
17  AlwaysBreakTemplateDeclarations: false
18  BinPackArguments: true
19  BinPackParameters: true
20  BreakBeforeBinaryOperators: true
21  BreakBeforeBraces: Allman
22  BreakBeforeTernaryOperators: true
23  BreakConstructorInitializersBeforeComma: false
24  ColumnLimit: 165
25  ConstructorInitializerAllOnOneLineOrOnePerLine: false
26  ConstructorInitializerIndentWidth: 0
27  ContinuationIndentWidth: 0
28  Cpp11BracedListStyle: false
29  DerivePointerBinding: false
30  ExperimentalAutoDetectBinPacking: true
31  IncludeBlocks: Regroup
32  IndentCaseBlocks: true
33  IndentCaseLabels: true
34  IndentFunctionDeclarationAfterType: true
35  # IndentPPDirectives: AfterHash
36  IndentWidth: 4
37  KeepEmptyLinesAtTheStartOfBlocks: false
38  Language: Cpp
39  MaxEmptyLinesToKeep: 2
40  NamespaceIndentation: None
41  PointerAlignment: Right
42  PointerBindsToType: false
43  # I'd like to set this but it's too slow for daily use...
44  # QualifierAlignment: Right
45  ReflowComments: false
46  RemoveBracesLLVM: true
47  SortIncludes: true
48  SortUsingDeclarations: true
49  SpaceAfterCStyleCast: false
50  SpaceAfterLogicalNot: false
51  SpaceBeforeAssignmentOperators: true
52  SpaceBeforeCpp11BracedList: true
53  SpaceBeforeParens: ControlStatements
54  SpaceInEmptyBlock: true
55  SpaceInEmptyParentheses: false
56  SpacesBeforeTrailingComments: 2
57  SpacesInAngles: false
58  SpacesInContainerLiterals: false
59  SpacesInCStyleCastParentheses: false
60  SpacesInParentheses: false
61  SpacesInSquareBrackets: false
62  Standard: Cpp11
63  TabWidth: 4
64  UseTab: Never