kunlang_tbox/.clang-format

19 lines
467 B
YAML

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