mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
New clang-format configuration added to determinate code style. The default version is 16. Extend CMake to copy config file to build root. Method/function separator deprecation: In case if function/method has declaration in header, definition must not have related comment. Only //==== [100 chars] ==== is allowed as a not connected separator. In case if function/method has NOT declaration in header, definition must have related comment in doxygen style: // Descriptions // @param // @return Or just function/method separator: //==== [100 chars] ==== All old separators with no description must be replaced to //==== [100 chars] ====
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
# clang-format configuration file trying to apply OCCT coding style
|
|
#
|
|
# Clang formatting rules: https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
# The clang-format npm package (https://github.com/angular/clang-format) uses
|
|
# a pre-built clang-format.exe from http://llvm.org/builds/
|
|
#
|
|
# We use defaults from the Microsoft style
|
|
BasedOnStyle: Microsoft
|
|
#
|
|
# Style options
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AllowAllArgumentsOnNextLine: false
|
|
AlignAfterOpenBracket: Align
|
|
AlignConsecutiveAssignments: Consecutive
|
|
AlignConsecutiveDeclarations: Consecutive
|
|
AlignTrailingComments: true
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakBeforeTernaryOperators: true
|
|
ColumnLimit: 100
|
|
ContinuationIndentWidth: 2
|
|
IndentCaseLabels: true
|
|
IndentPPDirectives: BeforeHash
|
|
IndentWidth: 2
|
|
IndentWrappedFunctionNames: true
|
|
PackConstructorInitializers: Never
|
|
PointerAlignment: Left
|
|
ReferenceAlignment: Left
|
|
SeparateDefinitionBlocks: Always
|
|
SortIncludes: true
|
|
UseTab: Never
|
|
#
|
|
# OCCT specific settings
|
|
StatementMacros:
|
|
- Standard_FALLTHROUGH
|
|
TypenameMacros:
|
|
- Handle
|