This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
nettrans/.clang-format

22 lines
510 B
Plaintext
Raw Permalink Normal View History

2024-04-16 20:34:32 +08:00
# .clang-format
# 风格格式化
BasedOnStyle: Google
2024-04-16 20:34:32 +08:00
# 4 空格缩进
IndentWidth: 4
# 连续对齐变量的声明
AlignConsecutiveDeclarations: true
# 指针左侧对齐
PointerAlignment: Left
# 访问说明符(public、private等)的偏移
AccessModifierOffset: -4
# 大括号
BreakBeforeBraces: Custom
BraceWrapping:
# 函数定义后面大括号在新行
AfterFunction: true
# class定义后面
AfterClass: true
# 是否允许短函数在一行
AllowShortFunctionsOnASingleLine: None