mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
dac74ebdf5
* Initial fixes * Whoops * Finish clang-tidy manual fixes * Add two missing fixes * Revert * Update clang-tidy * Try to fix unreachable code error * Move nolint comment * Apply missing fix * Don't override clang-tidy config * Does this fix clang-tidy? * Make all clang-tidy errors visible * Add comments about NOLINTs and remove a few * Fix typo
39 lines
976 B
YAML
39 lines
976 B
YAML
FormatStyle: file
|
|
|
|
Checks: '
|
|
llvm-namespace-comment,
|
|
misc-misplaced-const,
|
|
misc-static-assert,
|
|
misc-uniqueptr-reset-release,
|
|
modernize-avoid-bind,
|
|
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-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: '*'
|