mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
9710b2a540
No changes were made to the values of the entries. Sorting makes it easier for a clang-format n00b to compare each setting to its documentation on the http://clang.llvm.org/docs/ClangFormatStyleOptions.html web page. Signed-off-by: K. Heller <pestophagous@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
22 lines
834 B
YAML
22 lines
834 B
YAML
AccessModifierOffset: -8 # so public: and private: stays at the left site
|
|
AlignEscapedNewlinesLeft: true
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
BinPackParameters: true
|
|
BreakBeforeBinaryOperators: false
|
|
BreakBeforeBraces: Linux
|
|
BreakBeforeTernaryOperators: false
|
|
BreakConstructorInitializersBeforeComma: false
|
|
ColumnLimit: 0
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
ContinuationIndentWidth: 8
|
|
# ForEachMacros doesn't work, yet -> ForEachMacros: "Q_FOREACH"
|
|
IndentFunctionDeclarationAfterType: false #personal taste, good for long methods
|
|
IndentWidth: 8
|
|
MaxEmptyLinesToKeep: 2
|
|
NamespaceIndentation: All
|
|
PointerBindsToType: false
|
|
SpaceBeforeAssignmentOperators: true
|
|
# SpaceBeforeParens doesn't work --> SpaceBeforeParens: ControlStatements
|
|
SpacesBeforeTrailingComments: 1
|
|
SpacesInParentheses: false
|
|
UseTab: Always
|