mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
e96221beff
* Manual line breaks to pre-empt undesired `clang-format`ing. Informed by work under https://github.com/pybind/pybind11/pull/3683:60b7eb410f
59572e6559
* Manual curation of clang-format diffs involving source code comments. Very labor-intensive and dull. * Pulling .clang-format change from @henryiii's9057962d40
* Adding commonly used .clang-format `CommentPragmas:` * Ensure short lambdas are allowed Co-authored-by: Aaron Gokaslan <skylion.aaron@gmail.com>
39 lines
996 B
YAML
39 lines
996 B
YAML
---
|
|
# See all possible options and defaults with:
|
|
# clang-format --style=llvm --dump-config
|
|
BasedOnStyle: LLVM
|
|
AccessModifierOffset: -4
|
|
AllowShortLambdasOnASingleLine: true
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BreakBeforeBinaryOperators: All
|
|
BreakConstructorInitializers: BeforeColon
|
|
ColumnLimit: 99
|
|
CommentPragmas: 'NOLINT:.*|^ IWYU pragma:'
|
|
IncludeBlocks: Regroup
|
|
IndentCaseLabels: true
|
|
IndentPPDirectives: AfterHash
|
|
IndentWidth: 4
|
|
Language: Cpp
|
|
SpaceAfterCStyleCast: true
|
|
Standard: Cpp11
|
|
StatementMacros: ['PyObject_HEAD']
|
|
TabWidth: 4
|
|
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
|
|
...
|