2021-01-20 00:10:26 +00:00
|
|
|
---
|
|
|
|
# See all possible options and defaults with:
|
|
|
|
# clang-format --style=llvm --dump-config
|
|
|
|
BasedOnStyle: LLVM
|
|
|
|
AccessModifierOffset: -4
|
2022-02-10 19:42:03 +00:00
|
|
|
AllowShortLambdasOnASingleLine: true
|
2021-01-20 00:10:26 +00:00
|
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
|
|
BinPackArguments: false
|
|
|
|
BinPackParameters: false
|
|
|
|
BreakBeforeBinaryOperators: All
|
|
|
|
BreakConstructorInitializers: BeforeColon
|
|
|
|
ColumnLimit: 99
|
2022-02-10 19:42:03 +00:00
|
|
|
CommentPragmas: 'NOLINT:.*|^ IWYU pragma:'
|
|
|
|
IncludeBlocks: Regroup
|
2021-01-20 00:10:26 +00:00
|
|
|
IndentCaseLabels: true
|
|
|
|
IndentPPDirectives: AfterHash
|
|
|
|
IndentWidth: 4
|
|
|
|
Language: Cpp
|
|
|
|
SpaceAfterCStyleCast: true
|
|
|
|
Standard: Cpp11
|
2022-02-10 19:42:03 +00:00
|
|
|
StatementMacros: ['PyObject_HEAD']
|
2021-01-20 00:10:26 +00:00
|
|
|
TabWidth: 4
|
2022-02-10 19:42:03 +00:00
|
|
|
IncludeCategories:
|
|
|
|
- Regex: '<pybind11/.*'
|
|
|
|
Priority: -1
|
|
|
|
- Regex: 'pybind11.h"$'
|
|
|
|
Priority: 1
|
|
|
|
- Regex: '^".*/?detail/'
|
|
|
|
Priority: 1
|
|
|
|
SortPriority: 2
|
|
|
|
- Regex: '^"'
|
|
|
|
Priority: 1
|
|
|
|
SortPriority: 3
|
|
|
|
- Regex: '<[[:alnum:]._]+>'
|
|
|
|
Priority: 4
|
|
|
|
- Regex: '.*'
|
|
|
|
Priority: 5
|
2021-01-20 00:10:26 +00:00
|
|
|
...
|