kunlang_tbox/.clang-format

19 lines
467 B
Plaintext
Raw Normal View History

2025-12-11 09:08:35 +08:00
BasedOnStyle: Google
IndentWidth: 4
ColumnLimit: 120
BreakBeforeBraces: Allman
# 允许短语句保持在单行
AllowShortBlocksOnASingleLine: Always
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
# 控制大括号换行策略
BraceWrapping:
AfterCaseLabel: false
AfterControlStatement: false
AfterFunction: true
AfterStruct: true
BeforeElse: true