forked from gap-packages/NautyTracesInterface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
28 lines (26 loc) · 786 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
#
# Configure clang-format to a style that resembles a good subset
# of the GAP kernel.
#
# For information on the settings in this file, please consult
# <https://clang.llvm.org/docs/ClangFormatStyleOptions.html>
# See also <https://clangformat.com/>
AlignConsecutiveDeclarations: true
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: true
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BinPackArguments: true
BinPackParameters: false
BreakBeforeBraces: Stroustrup
ColumnLimit: 78
Cpp11BracedListStyle: false
IndentCaseLabels: false
IndentWidth: 4
MaxEmptyLinesToKeep: 2
PointerBindsToType: Middle
SpacesBeforeTrailingComments: 4
UseTab: Never
SortIncludes: true
AlwaysBreakTemplateDeclarations: true