2020-08-06 16:55:17 +00:00
|
|
|
---
|
|
|
|
Language: Cpp
|
2021-11-19 08:58:26 +00:00
|
|
|
BasedOnStyle: Google
|
|
|
|
ColumnLimit: 0
|
|
|
|
IndentWidth: 4
|
2020-08-06 16:55:17 +00:00
|
|
|
AccessModifierOffset: -2
|
2021-11-26 05:29:23 +00:00
|
|
|
NamespaceIndentation: All
|
2022-06-01 01:45:41 +00:00
|
|
|
AlignOperands: AlignAfterOperator
|
2021-11-19 08:58:26 +00:00
|
|
|
AllowShortLoopsOnASingleLine: true
|
2020-08-06 16:55:17 +00:00
|
|
|
AllowShortBlocksOnASingleLine: true
|
|
|
|
AllowShortFunctionsOnASingleLine: Empty
|
2021-11-19 08:58:26 +00:00
|
|
|
AllowShortCaseLabelsOnASingleLine: true
|
2022-06-01 01:45:41 +00:00
|
|
|
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
|
2021-11-26 05:29:23 +00:00
|
|
|
EmptyLineBeforeAccessModifier: LogicalBlock
|
2022-05-20 01:23:27 +00:00
|
|
|
SeparateDefinitionBlocks: Always
|
2021-11-19 08:58:26 +00:00
|
|
|
PointerAlignment: Right
|
2022-06-01 01:45:41 +00:00
|
|
|
BinPackArguments: false
|
|
|
|
BinPackParameters: false
|
2022-06-09 01:20:31 +00:00
|
|
|
PackConstructorInitializers: NextLine
|
2022-06-01 01:45:41 +00:00
|
|
|
IncludeCategories:
|
|
|
|
- Regex: '^<ext/.*\.h>'
|
|
|
|
Priority: 2
|
|
|
|
SortPriority: 0
|
|
|
|
CaseSensitive: false
|
|
|
|
- Regex: '^<.*\.h>'
|
|
|
|
Priority: 1
|
|
|
|
SortPriority: 0
|
|
|
|
CaseSensitive: false
|
|
|
|
- Regex: '^<(iostream|cstdio)>'
|
|
|
|
Priority: 2
|
|
|
|
SortPriority: 1
|
|
|
|
CaseSensitive: false
|
|
|
|
- Regex: '^<.*'
|
|
|
|
Priority: 2
|
|
|
|
SortPriority: 0
|
|
|
|
CaseSensitive: false
|
|
|
|
- Regex: '.*'
|
|
|
|
Priority: 3
|
|
|
|
SortPriority: 0
|
|
|
|
CaseSensitive: false
|
|
|
|
# InsertBraces: true ## clang-format 15
|