goldendict-ng/.clang-format

31 lines
893 B
Plaintext
Raw Normal View History

2022-06-03 12:47:42 +00:00
# Format Style Options - Created with Clang Power Tools
2022-02-10 11:52:16 +00:00
---
2022-02-12 17:07:39 +00:00
AlignAfterOpenBracket: Align
2022-06-03 12:47:42 +00:00
AlignConsecutiveAssignments: AcrossComments
2022-02-13 03:57:59 +00:00
AlignEscapedNewlines: Left
2022-06-03 12:47:42 +00:00
AlignOperands: Align
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-06-03 12:47:42 +00:00
BasedOnStyle: LLVM
BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: NonAssignment
2022-02-10 11:52:16 +00:00
BreakBeforeBraces: Allman
BreakConstructorInitializers: AfterColon
2022-06-03 12:47:42 +00:00
ColumnLimit: 120
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth : 2
ContinuationIndentWidth: 2
MaxEmptyLinesToKeep: 1
2022-02-12 12:59:32 +00:00
PointerAlignment: Middle
2022-06-03 12:47:42 +00:00
SortIncludes: false
SortUsingDeclarations: false
2022-02-13 03:57:59 +00:00
SpaceBeforeParens: Never
2022-06-03 12:47:42 +00:00
SpacesInAngles: true
SpacesInParentheses: true
SpacesInSquareBrackets: true
2022-02-13 03:57:59 +00:00
UseTab: Never
2022-02-10 11:52:16 +00:00
...