geopro/.clang-format

25 lines
611 B
YAML

# 统一代码风格(规约 §10.1:约束 AI 输出风格漂移)
BasedOnStyle: Google
Language: Cpp
Standard: c++17
ColumnLimit: 100
IndentWidth: 4
TabWidth: 4
UseTab: Never
AccessModifierOffset: -4
PointerAlignment: Left
DerivePointerAlignment: false
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterFunction: true
AfterNamespace: false
AfterControlStatement: false
SortIncludes: true
IncludeBlocks: Regroup
NamespaceIndentation: None
FixNamespaceComments: true