我想要这个:
if (!enabled)
{
return;
}
转向这个:
if (!enabled) { return; }
(换句话说,我想在一行中使用简短的 if 语句,但要保留{}
它们)
目前我正在使用以下配置:
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: true
AllowShortBlocksOnASingleLine: true
BreakBeforeBraces: Allman
但是,我得到的输出是:
if (!enabled)
{
return;
}
上述格式是否可以使用 clang-format 完成?