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>
diff --git a/.clang-tidy b/.clang-tidy
index 14595d8..915e3b0 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -250,13 +250,20 @@
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,