goldendict-ng/.clang-format

28 lines
755 B
Plaintext
Raw Normal View History

2022-02-10 11:52:16 +00:00
---
2022-02-13 03:57:59 +00:00
BasedOnStyle: LLVM
2022-02-12 17:07:39 +00:00
AlignAfterOpenBracket: Align
2022-02-13 03:57:59 +00:00
AlignEscapedNewlines: Left
AllowAllArgumentsOnNextLine: 'false'
AllowShortBlocksOnASingleLine: 'false'
2022-02-10 11:52:16 +00:00
AllowShortFunctionsOnASingleLine: None
2022-02-12 17:07:39 +00:00
AllowShortIfStatementsOnASingleLine: Never
2022-02-13 03:57:59 +00:00
BinPackArguments: 'false'
BinPackParameters: 'false'
2022-02-10 11:52:16 +00:00
BreakBeforeBraces: Allman
BreakConstructorInitializers: AfterColon
2022-02-13 03:57:59 +00:00
ColumnLimit: '120'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
ConstructorInitializerIndentWidth: '2'
ContinuationIndentWidth: '2'
2022-02-13 05:29:43 +00:00
MaxEmptyLinesToKeep: '1'
2022-02-12 12:59:32 +00:00
PointerAlignment: Middle
2022-02-13 03:57:59 +00:00
SortIncludes: 'false'
SortUsingDeclarations: 'false'
SpaceBeforeParens: Never
SpacesInAngles: 'true'
SpacesInParentheses: 'true'
SpacesInSquareBrackets: 'true'
UseTab: Never
2022-02-10 11:52:16 +00:00
...