-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
39 lines (39 loc) · 1.01 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
Language: Cpp
BasedOnStyle: LLVM
AlignAfterOpenBracket: DontAlign
AlignTrailingComments: true
AlignEscapedNewlines: Right
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: InlineOnly
AccessModifierOffset: -4
KeepEmptyLinesAtTheStartOfBlocks: false
IndentWidth: 4
IndentWrappedFunctionNames: false
IndentCaseLabels: false
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '".*(/).*"'
Priority: 98
- Regex: '".*"'
Priority: 99
- Regex: '<.*>'
Priority: 100
NamespaceIndentation: All
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: true
BreakConstructorInitializers: BeforeComma
BreakStringLiterals: false
DerivePointerAlignment: false
DisableFormat: false
MaxEmptyLinesToKeep: 1
PointerAlignment: Left
ReflowComments: false
SortIncludes: true
SortUsingDeclarations: true
SpacesInAngles: false
SpaceBeforeParens: ControlStatements
Standard: Auto
TabWidth: 4
UseTab: Always
ColumnLimit: 0