mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2026-05-05 13:41:35 +00:00
26 lines
584 B
YAML
26 lines
584 B
YAML
Language: Cpp
|
||
# 格式化风格,可以是LLVM, Google, Chromium, Mozilla, WebKit等,或者自定义
|
||
BasedOnStyle: Google
|
||
|
||
# 缩进设置
|
||
IndentWidth: 2
|
||
TabWidth: 2
|
||
UseTab: Never
|
||
|
||
# 换行相关设置
|
||
BreakBeforeBraces: Attach
|
||
AllowShortIfStatementsOnASingleLine: false
|
||
AllowShortFunctionsOnASingleLine: Inline
|
||
AllowShortLoopsOnASingleLine: false
|
||
|
||
# 类与结构体
|
||
DerivePointerAlignment: false
|
||
PointerAlignment: Left
|
||
|
||
# 包含文件的排序和分组
|
||
IncludeBlocks: Preserve
|
||
SortIncludes: true
|
||
|
||
# 控制最大行宽
|
||
ColumnLimit: 120
|