- 重构模块使用新的代码风格 - 老代码 (src 目录下的代码) 继续使用之前的代码风格 通过在需要不同代码风格的目录下放对应 .clang-format 配置文件实现
39 lines
778 B
YAML
39 lines
778 B
YAML
# -*- mode: yaml; -*-
|
|
|
|
---
|
|
BasedOnStyle: Google
|
|
IndentWidth: 2
|
|
ConstructorInitializerIndentWidth: 2
|
|
ContinuationIndentWidth: 2
|
|
|
|
AlignConsecutiveAssignments:
|
|
Enabled: true
|
|
AcrossEmptyLines: false
|
|
AcrossComments: false
|
|
AlignCompound: true
|
|
PadOperators: true
|
|
AlignConsecutiveBitFields:
|
|
Enabled: true
|
|
|
|
AlignConsecutiveMacros:
|
|
Enabled: true
|
|
|
|
AlignConsecutiveShortCaseStatements:
|
|
Enabled: true
|
|
|
|
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
|
|
|
|
IndentCaseLabels: false
|
|
|
|
# 多行函数每个参数单独一行
|
|
AlignAfterOpenBracket: BlockIndent
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
|
|
# 指针样式(右对齐)
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Right
|
|
---
|