14 lines
335 B
YAML
14 lines
335 B
YAML
# 精简版 K&R 风格配置
|
|
BasedOnStyle: LLVM
|
|
BreakBeforeBraces: Linux
|
|
IndentWidth: 4
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
|
|
# 显式禁用所有大括号换行
|
|
BraceWrapping:
|
|
AfterClass: false
|
|
AfterStruct: false
|
|
AfterUnion: false
|
|
AfterFunction: false
|
|
AfterNamespace: false
|
|
AfterControlStatement: Never |