generated from tlemane/cpp-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-format
29 lines (28 loc) · 819 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
29
---
BasedOnStyle: Mozilla
AlignConsecutiveMacros: 'true'
AlignEscapedNewlines: DontAlign
AlignOperands: 'true'
AllowAllArgumentsOnNextLine: 'true'
AllowShortBlocksOnASingleLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: InlineOnly
AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: 'false'
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakTemplateDeclarations: 'Yes'
BreakBeforeBinaryOperators: All
BreakBeforeBraces: Allman
BreakConstructorInitializers: BeforeColon
ColumnLimit: '120'
Language: Cpp
NamespaceIndentation: None
PenaltyBreakTemplateDeclaration: '0'
SpaceAfterCStyleCast: 'false'
SpaceInEmptyParentheses: 'true'
SpacesInCStyleCastParentheses: 'false'
Standard: Auto
TabWidth: '2'
UseTab: Never
...