forked from lattice/quda
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.clang-format
More file actions
27 lines (27 loc) · 742 Bytes
/
Copy path.clang-format
File metadata and controls
27 lines (27 loc) · 742 Bytes
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
---
BasedOnStyle: Webkit
IndentWidth: 2
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: true
AllowShortCaseLabelsOnASingleLine : true
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
BreakBeforeBraces: Linux
BreakBeforeTernaryOperators: false
BreakConstructorInitializers: AfterColon
ColumnLimit: 120
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 2
ContinuationIndentWidth: 2
Cpp11BracedListStyle: true
FixNamespaceComments: true
NamespaceIndentation: All
PenaltyExcessCharacter: 10
PointerAlignment: Right
SortIncludes: false
SpaceBeforeAssignmentOperators: true
CommentPragmas: '^\\.+'
UseTab: Never
...