forked from intel/ScalableVectorSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
32 lines (32 loc) · 906 Bytes
/
.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
---
IndentWidth: 4
---
Language: Cpp
AlignAfterOpenBracket: BlockIndent
AlignEscapedNewlines: Left
AlignTrailingComments: true
AllowAllArgumentsOnNextLine: true
#AllowAllParametersOnNextLine: true
AllowShortBlocksOnASingleLine: Always
AllowShortCaseLabelsOnASingleLine: false
AllowShortEnumsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: All
AllowShortLoopsOnASingleLine: false
BinPackArguments: false
BinPackParameters: false
BreakConstructorInitializers: BeforeComma
ColumnLimit: 92
CompactNamespaces: false
DerivePointerAlignment: false
#EmptyLineAfterAccessModifier: Never
#EmptyLineBeforeAccessModifier: LogicalBlock
FixNamespaceComments: true
IndentCaseLabels: true
KeepEmptyLinesAtTheStartOfBlocks: false
#LambdaBodyIndentation: OuterScope
PointerAlignment: Left
ReferenceAlignment: Left
ReflowComments: true
---