goldendict-ng/.clang-format

31 lines
863 B
Plaintext
Raw Normal View History

2022-06-19 01:46:39 +00:00
# Format Style Options - Created with Clang Power Tools
---
AlignAfterOpenBracket: Align
2022-06-19 01:46:39 +00:00
AlignConsecutiveAssignments: AcrossComments
AlignEscapedNewlines: Left
2022-06-19 01:46:39 +00:00
AlignOperands: Align
AllowAllArgumentsOnNextLine: false
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: Never
2022-06-19 01:46:39 +00:00
BasedOnStyle: LLVM
BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Allman
BreakConstructorInitializers: AfterColon
2022-06-19 01:46:39 +00:00
ColumnLimit: 120
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth : 2
ContinuationIndentWidth: 2
MaxEmptyLinesToKeep: 1
PointerAlignment: Middle
2022-06-19 01:46:39 +00:00
SortIncludes: false
SortUsingDeclarations: false
SpaceBeforeParens: Never
2022-06-19 01:46:39 +00:00
SpacesInAngles: true
SpacesInParentheses: true
SpacesInSquareBrackets: true
UseTab: Never
...