加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.clang-format 968 Bytes
一键复制 编辑 原始数据 按行查看 历史
---
BasedOnStyle: Google
###################################
# 缩进配置
###################################
UseTab: Always
IndentWidth: 4
TabWidth: 4
BreakBeforeBraces: Allman
ColumnLimit: 0
AccessModifierOffset: -4
NamespaceIndentation: All
FixNamespaceComments: false
###################################
# 其他样式选项
###################################
# 允许短的 if 语句保持在同一行
AllowShortIfStatementsOnASingleLine: true
# 允许短的循环保持在同一行
AllowShortLoopsOnASingleLine: true
# 允许短的块保持在同一行
AllowShortBlocksOnASingleLine: true
# 缩进 case 标签
IndentCaseLabels: true
# 允许排序 #include
SortIncludes: false
# 对齐宏定义
# AlignConsecutiveMacros: AcrossEmptyLinesAndComments
BreakBeforeBraces: Custom
Cpp11BracedListStyle: false
BraceWrapping:
AfterEnum: true
AfterStruct: false
SplitEmptyFunction: false
AfterFunction: false
AfterNamespace: false
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化