2020-05-05 17:55:41 +02:00
|
|
|
# Note: if you change any of the settings here, please reformat the entire
|
|
|
|
# codebase as part of the same commit, that will prevent subsequent commits
|
|
|
|
# from being flagged as being improperly formatted.
|
|
|
|
|
2019-11-06 22:08:07 +01:00
|
|
|
---
|
2020-04-27 15:44:01 +02:00
|
|
|
# This configuration requires clang-format 8.0 or higher.
|
2019-11-06 22:08:07 +01:00
|
|
|
BasedOnStyle: Mozilla
|
|
|
|
AlignAfterOpenBracket: DontAlign
|
|
|
|
AlignOperands: false
|
|
|
|
AlwaysBreakAfterReturnType: None
|
|
|
|
AlwaysBreakAfterDefinitionReturnType: None
|
|
|
|
BreakBeforeBraces: Allman
|
|
|
|
BinPackArguments: true
|
|
|
|
BinPackParameters: true
|
|
|
|
ColumnLimit: 100
|
|
|
|
SpaceAfterTemplateKeyword: true
|
2020-05-01 18:40:34 +02:00
|
|
|
Standard: Cpp11
|
2020-04-27 15:44:01 +02:00
|
|
|
StatementMacros:
|
2021-09-10 00:12:20 +02:00
|
|
|
- PyObject_HEAD
|
|
|
|
- PyObject_VAR_HEAD
|
2020-04-27 15:44:01 +02:00
|
|
|
- vtkAbstractTypeMacro
|
|
|
|
- vtkTypeMacro
|
|
|
|
- vtkBaseTypeMacro
|
|
|
|
- vtkAbstractTemplateTypeMacro
|
|
|
|
- vtkAbstractTypeMacroWithNewInstanceType
|
2019-11-06 22:08:07 +01:00
|
|
|
...
|