Skip to content

Commit a8766f9

Browse files
committed
🎨 Format code
1 parent ea6d28b commit a8766f9

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

‎.clang-format

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
Language: Cpp
3+
BasedOnStyle: LLVM
4+
AccessModifierOffset: -4
5+
AlignConsecutiveAssignments: false
6+
AlignConsecutiveDeclarations: false
7+
AlignOperands: true
8+
AlignTrailingComments: false
9+
AlwaysBreakTemplateDeclarations: Yes
10+
BraceWrapping:
11+
AfterCaseLabel: false
12+
AfterClass: false
13+
AfterControlStatement: false
14+
AfterEnum: false
15+
AfterFunction: false
16+
AfterNamespace: false
17+
AfterStruct: false
18+
AfterUnion: false
19+
AfterExternBlock: false
20+
BeforeCatch: false
21+
BeforeElse: false
22+
BeforeLambdaBody: false
23+
BeforeWhile: false
24+
SplitEmptyFunction: true
25+
SplitEmptyRecord: true
26+
SplitEmptyNamespace: true
27+
BreakBeforeBraces: Custom
28+
BreakConstructorInitializers: AfterColon
29+
BreakConstructorInitializersBeforeComma: false
30+
ColumnLimit: 120
31+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
32+
ContinuationIndentWidth: 8
33+
IncludeCategories:
34+
- Regex: '^<.*'
35+
Priority: 1
36+
- Regex: '^".*'
37+
Priority: 2
38+
- Regex: '.*'
39+
Priority: 3
40+
IncludeIsMainRegex: '([-_](test|unittest))?$'
41+
IndentCaseLabels: true
42+
IndentWidth: 4
43+
InsertNewlineAtEOF: true
44+
MacroBlockBegin: ''
45+
MacroBlockEnd: ''
46+
MaxEmptyLinesToKeep: 2
47+
NamespaceIndentation: All
48+
SpaceAfterCStyleCast: true
49+
SpaceAfterTemplateKeyword: false
50+
SpaceBeforeRangeBasedForLoopColon: false
51+
SpaceInEmptyParentheses: false
52+
SpacesInAngles: false
53+
SpacesInConditionalStatement: false
54+
SpacesInCStyleCastParentheses: false
55+
SpacesInParentheses: false
56+
TabWidth: 4
57+
...

0 commit comments

Comments
 (0)