.clang-tidy 976 Bytes
Newer Older
1
2
3
4
FormatStyle: file

Checks: '
llvm-namespace-comment,
5
6
7
misc-misplaced-const,
misc-static-assert,
misc-uniqueptr-reset-release,
8
9
10
11
modernize-avoid-bind,
modernize-replace-auto-ptr,
modernize-replace-disallow-copy-and-assign-macro,
modernize-shrink-to-fit,
12
modernize-use-auto,
13
modernize-use-bool-literals,
14
15
modernize-use-equals-default,
modernize-use-equals-delete,
16
17
modernize-use-default-member-init,
modernize-use-noexcept,
18
modernize-use-emplace,
19
20
modernize-use-override,
modernize-use-using,
21
*performance*,
22
readability-container-size-empty,
23
24
25
26
27
28
29
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,
30
31
'

32
33
34
35
CheckOptions:
- key:             performance-unnecessary-value-param.AllowedTypes
  value:           'exception_ptr$;'

36
HeaderFilterRegex: 'pybind11/.*h'
37
38

WarningsAsErrors: '*'