Files
ktransformers/csrc/balance_serve/kvc2/.clang-format
2025-03-31 22:55:32 +08:00

26 lines
584 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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