goldendict-ng/.clang-format

19 lines
528 B
Plaintext
Raw Normal View History

2022-02-10 11:52:16 +00:00
# Format Style Options - Created with Clang Power Tools
---
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: true
BasedOnStyle: LLVM
BinPackArguments: false
2022-02-12 12:59:32 +00:00
BinPackParameters: false
2022-02-10 11:52:16 +00:00
BreakBeforeBraces: Allman
BreakConstructorInitializers: AfterColon
ColumnLimit: 160
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth : 2
ContinuationIndentWidth: 2
MaxEmptyLinesToKeep: 2
2022-02-12 12:59:32 +00:00
PointerAlignment: Middle
SpacesInAngles: true
SpacesInParentheses: true
2022-02-10 11:52:16 +00:00
...