summaryrefslogtreecommitdiff
path: root/.clang-format
blob: 6af0e0d912aed59b63d15fc03dcd4dc8d09d974d (plain)
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
---
Language: Cpp
BasedOnStyle: Google
AccessModifierOffset: -4
AlignAfterOpenBracket: DontAlign
AlignArrayOfStructures: None
AlignConsecutiveMacros: AcrossEmptyLinesAndComments
AlignOperands: false
AllowAllArgumentsOnNextLine: true
AllowShortBlocksOnASingleLine: Never
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: None
AllowShortLoopsOnASingleLine: false
AlwaysBreakBeforeMultilineStrings: false
BreakBeforeBraces: Allman
BreakConstructorInitializers: AfterColon
BreakInheritanceList: AfterColon
ColumnLimit: 100
CommentPragmas: NOLINT:.*
ConstructorInitializerIndentWidth: 8
ContinuationIndentWidth: 8
DerivePointerAlignment: false
IncludeBlocks: Preserve
IndentWidth: 4
MaxEmptyLinesToKeep: 1
PackConstructorInitializers: Never
PenaltyBreakBeforeFirstCallParameter: 100000
PointerAlignment: Left
SortIncludes: Never
SpaceBeforeAssignmentOperators: true
SpaceBeforeCaseColon: false
SpaceBeforeParens: ControlStatements
Standard: c++20
TabWidth: 4
UseTab: Never
---