-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-format
64 lines (56 loc) · 1.4 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
BasedOnStyle: Chromium
ColumnLimit: '80'
IndentWidth: '4'
UseTab: Never
# Avoids dealing with this:
# void f() { foo(); }
AllowShortFunctionsOnASingleLine: Empty
# Add space between functions, classes, ect.
SeparateDefinitionBlocks: Always
# Avoiding arguments aligned with end of function
# default:
# someLongFunction(argument1,
# argument2);
#
# BlockIndent:
# someLongFunction(
# argument1, argument2
# );
AlignAfterOpenBracket: BlockIndent
# Avoiding multiple arguments on same line if too long
# false:
# void f() {
# f(a, a,
# a);
# }
#
# true:
# void f() {
# f(a,
# a,
# a);
# }
BinPackArguments: false
BinPackParameters: false
# true: false:
# vector<int> x{1, 2, 3, 4}; vs. vector<int> x{ 1, 2, 3, 4 };
# vector<T> x{{}, {}, {}, {}}; vector<T> x{ {}, {}, {}, {} };
# f(MyMap[{composite, key}]); f(MyMap[{ composite, key }]);
# new int[3]{1, 2, 3}; new int[3]{ 1, 2, 3 };
Cpp11BracedListStyle: false
# Avoiding all arguments on newline as messes with arg name hinting
# true:
# callFunction(
# a, b, c, d);
#
# false:
# callFunction(a,
# b,
# c,
# d);
AllowAllArgumentsOnNextLine : false
AllowAllParametersOfDeclarationOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false
AlignArrayOfStructures: Left
CommentPragmas: '@(ref|p|copydoc|note) '