forked from Xilinx/Get_Moving_With_Alveo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
35 lines (35 loc) · 845 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
33
34
35
---
AccessModifierOffset: -4
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: false
SortIncludes: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
ColumnLimit: 0
IndentWidth: 4
SpaceAfterCStyleCast: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterControlStatement: false
AfterFunction: true
AfterStruct: true
AfterUnion: true
AfterExternBlock: true
BeforeElse: true
BeforeCatch: true
IndentBraces: false
BinPackParameters: false
BinPackArguments: true
PointerAlignment: Right
TabWidth: 4
UseTab: Never
DerivePointerAlignment: false
MaxEmptyLinesToKeep: 2
SpaceBeforeAssignmentOperators: true
IncludeBlocks: Regroup
AlignAfterOpenBracket: Align
AlignEscapedNewlines: Left
SortUsingDeclarations: true
SpaceBeforeParens: ControlStatements
...