mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
b5357d1fa8
* Enable clang-tidy else-after-return and redundant void checks * Fix remaining else-after * Address reviewer comments * Fix indentation * Rerun clang-tidy post merge
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
FormatStyle: file
|
|
|
|
Checks: '
|
|
clang-analyzer-optin.cplusplus.VirtualCall,
|
|
llvm-namespace-comment,
|
|
misc-misplaced-const,
|
|
misc-static-assert,
|
|
misc-uniqueptr-reset-release,
|
|
modernize-avoid-bind,
|
|
modernize-redundant-void-arg,
|
|
modernize-replace-auto-ptr,
|
|
modernize-replace-disallow-copy-and-assign-macro,
|
|
modernize-shrink-to-fit,
|
|
modernize-use-auto,
|
|
modernize-use-bool-literals,
|
|
modernize-use-equals-default,
|
|
modernize-use-equals-delete,
|
|
modernize-use-default-member-init,
|
|
modernize-use-noexcept,
|
|
modernize-use-emplace,
|
|
modernize-use-override,
|
|
modernize-use-using,
|
|
*performance*,
|
|
readability-container-size-empty,
|
|
readability-else-after-return,
|
|
readability-make-member-function-const,
|
|
readability-redundant-function-ptr-dereference,
|
|
readability-redundant-smartptr-get,
|
|
readability-redundant-string-cstr,
|
|
readability-simplify-subscript-expr,
|
|
readability-string-compare,
|
|
readability-uniqueptr-delete-release,
|
|
'
|
|
|
|
CheckOptions:
|
|
- key: performance-unnecessary-value-param.AllowedTypes
|
|
value: 'exception_ptr$;'
|
|
|
|
HeaderFilterRegex: 'pybind11/.*h'
|
|
|
|
WarningsAsErrors: '*'
|