summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2024-03-20 23:16:06 +0300
committerEd Tanous <ed@tanous.net>2024-03-27 22:17:59 +0300
commit5a785c8a65e91f5c77e68bb72269f58c1d07b683 (patch)
treedc51e95b559a3454e7474725807f27205c67da3b /.clang-tidy
parent3be101c10db868625ea6020c43e5ea1054f242f3 (diff)
downloadbmcweb-5a785c8a65e91f5c77e68bb72269f58c1d07b683.tar.xz
Enable clang-tidy-18 misc checks
Enable the checks we pass already. This also removes the commented out misc-no-recursion, considering we don't pass it. Tested: Clang-tidy passes. Change-Id: Ibaed95677aed85188bff483d2cd53605faaf7cc6 Signed-off-by: Ed Tanous <ed@tanous.net>
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy9
1 files changed, 8 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 14595d8a96..915e3b0250 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -250,13 +250,20 @@ cppcoreguidelines-pro-type-vararg,
cppcoreguidelines-slicing,
cppcoreguidelines-special-member-functions,
google-explicit-constructor,
+misc-coroutine-hostile-raii,
+misc-header-include-cycle,
+misc-misleading-bidirectional,
+misc-misleading-identifier,
misc-misplaced-const,
-#misc-no-recursion,
+misc-new-delete-overloads,
+misc-non-copyable-objects,
misc-redundant-expression,
misc-static-assert,
misc-throw-by-value-catch-by-reference,
misc-unconventional-assign-operator,
misc-uniqueptr-reset-release,
+misc-unused-alias-decls,
+misc-unused-parameters,
misc-unused-using-decls,
modernize-avoid-bind,
modernize-deprecated-headers,