16 lines
462 B
Plaintext
16 lines
462 B
Plaintext
# 基於 Google 風格但較寬鬆,適合舊代碼
|
|
BasedOnStyle: Google
|
|
IndentWidth: 4
|
|
TabWidth: 4
|
|
UseTab: Never
|
|
ColumnLimit: 100
|
|
AccessModifierOffset: -2
|
|
AlignConsecutiveAssignments: false
|
|
AlignConsecutiveDeclarations: false
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
BreakBeforeBraces: Attach
|
|
IndentCaseLabels: true
|
|
SpacesBeforeTrailingComments: 2
|
|
Standard: Cpp03 # 針對舊代碼 |