forked from illinois-impact/gpu-algorithms-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
29 lines (29 loc) · 776 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
---
Language: Cpp
BasedOnStyle: LLVM
ColumnLimit: 140
AccessModifierOffset: -2
BreakBeforeBraces: Attach
AlignTrailingComments: true
AlignEscapedNewlinesLeft: false
AlignConsecutiveAssignments: true
Cpp11BracedListStyle: true
DerivePointerAlignment: true
PointerAlignment: Left
ExperimentalAutoDetectBinPacking: true
IndentWrappedFunctionNames: true
NamespaceIndentation: Inner
SpaceAfterCStyleCast: true
SpacesInAngles: false
AlignOperands: true
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakTemplateDeclarations: true
IndentCaseLabels: true
SpacesBeforeTrailingComments: 1
Standard: Cpp11
TabWidth: 4
UseTab: Never
...