Commit | Line | Data |
---|---|---|
a5b7ed13 SM |
1 | Checks: '-*, |
2 | bugprone-argument-comment, | |
3 | bugprone-assert-side-effect, | |
4 | bugprone-assignment-in-if-condition, | |
5 | bugprone-bad-signal-to-kill-thread, | |
6 | bugprone-bool-pointer-implicit-conversion, | |
7 | bugprone-copy-constructor-init, | |
8 | bugprone-dangling-handle, | |
9 | bugprone-exception-escape, | |
10 | bugprone-fold-init-type, | |
11 | bugprone-forward-declaration-namespace, | |
12 | bugprone-forwarding-reference-overload, | |
13 | bugprone-inaccurate-erase, | |
14 | bugprone-incorrect-roundings, | |
15 | bugprone-infinite-loop, | |
16 | bugprone-integer-division, | |
17 | bugprone-macro-parentheses, | |
18 | bugprone-macro-repeated-side-effects, | |
19 | bugprone-misplaced-operator-in-strlen-in-alloc, | |
20 | bugprone-misplaced-pointer-arithmetic-in-alloc, | |
21 | bugprone-move-forwarding-reference, | |
22 | bugprone-multiple-statement-macro, | |
23 | bugprone-not-null-terminated-result, | |
24 | bugprone-parent-virtual-call, | |
25 | bugprone-posix-return, | |
26 | bugprone-shared-ptr-array-mismatch, | |
27 | bugprone-signal-handler, | |
28 | bugprone-signed-char-misuse, | |
29 | bugprone-sizeof-container, | |
30 | bugprone-sizeof-expression, | |
31 | bugprone-standalone-empty, | |
32 | bugprone-string-constructor, | |
33 | bugprone-string-integer-assignment, | |
34 | bugprone-string-literal-with-embedded-nul, | |
35 | bugprone-suspicious-enum-usage, | |
36 | bugprone-suspicious-include, | |
37 | bugprone-suspicious-memory-comparison | |
38 | bugprone-suspicious-memset-usage, | |
39 | bugprone-suspicious-missing-comma, | |
40 | bugprone-suspicious-realloc-usage, | |
41 | bugprone-suspicious-semicolon, | |
42 | bugprone-suspicious-string-compare, | |
43 | bugprone-swapped-arguments, | |
44 | bugprone-terminating-continue, | |
45 | bugprone-throw-keyword-missing, | |
46 | bugprone-too-small-loop-variable, | |
47 | bugprone-unchecked-optional-access | |
48 | bugprone-undefined-memory-manipulation, | |
49 | bugprone-undelegated-constructor, | |
50 | bugprone-unhandled-exception-at-new, | |
51 | bugprone-unhandled-self-assignment, | |
52 | bugprone-unused-raii, | |
53 | bugprone-unused-return-value, | |
54 | bugprone-use-after-move, | |
55 | bugprone-virtual-near-miss, | |
56 | bugprone-unused-raii, | |
57 | bugprone-use-after-move, | |
4b9e2e3d | 58 | cppcoreguidelines-avoid-const-or-ref-data-members, |
a5b7ed13 SM |
59 | cppcoreguidelines-pro-type-const-cast, |
60 | cppcoreguidelines-slicing, | |
61 | cppcoreguidelines-special-member-functions, | |
62 | cppcoreguidelines-virtual-class-destructor, | |
63 | google-build-explicit-make-pair, | |
64 | google-explicit-constructor, | |
65 | misc-const-correctness, | |
66 | misc-misleading-identifier, | |
67 | misc-non-copyable-objects, | |
68 | misc-throw-by-value-catch-by-reference, | |
f79594fd | 69 | misc-unused-alias-decls, |
a5b7ed13 SM |
70 | misc-unused-parameters, |
71 | misc-unused-using-decls, | |
f79594fd | 72 | misc-use-anonymous-namespace, |
a5b7ed13 SM |
73 | modernize-avoid-bind, |
74 | modernize-concat-nested-namespaces, | |
75 | modernize-loop-convert, | |
76 | modernize-make-shared, | |
77 | modernize-make-unique, | |
78 | modernize-pass-by-value, | |
79 | modernize-redundant-void-arg, | |
80 | modernize-replace-auto-ptr, | |
81 | modernize-replace-random-shuffle, | |
82 | modernize-replace-auto-ptr, | |
83 | modernize-shrink-to-fit, | |
84 | modernize-use-bool-literals, | |
85 | modernize-use-default-member-init, | |
86 | modernize-use-emplace, | |
87 | modernize-use-equals-default, | |
88 | modernize-use-equals-delete, | |
89 | modernize-use-noexcept, | |
90 | modernize-use-nullptr, | |
91 | modernize-use-override, | |
92 | modernize-use-transparent-functors, | |
93 | modernize-use-using, | |
94 | performance-*, | |
95 | -performance-no-int-to-ptr, | |
96 | readability-redundant-member-init, | |
97 | readability-simplify-boolean-expr' | |
98 | FormatStyle: 'file' | |
99 | CheckOptions: | |
100 | - key: bugprone-assert-side-effect.AssertMacros | |
101 | value: BT_ASSERT,BT_ASSERT_DBG | |
4b9e2e3d SM |
102 | - key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor |
103 | value: true | |
104 | - key: cppcoreguidelines-special-member-functions.AllowMissingMoveFunctionsWhenCopyIsDeleted | |
105 | value: true |