From c1291fd102ed88ba8e1df63e5b2ae6fa94c73188 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Sun, 4 Aug 2024 20:22:04 -0700 Subject: [PATCH] clang-tidy: enforce the new rules Fixes: https://git.lix.systems/lix-project/lix/issues/241 Change-Id: Idd096dc9ca92ffd4be8c22d293ba5bf2ec48a85f --- .clang-tidy | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 0cc1f2520..ccfdf9e7d 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -16,6 +16,13 @@ Checks: - -bugprone-unchecked-optional-access # many warnings, seems like a questionable lint - -bugprone-branch-clone + # all thrown exceptions must derive from std::exception + - hicpp-exception-baseclass + # capturing async lambdas are dangerous + - cppcoreguidelines-avoid-capturing-lambda-coroutines + # crimes must be appropriately declared as crimes + - cppcoreguidelines-pro-type-cstyle-cast + CheckOptions: bugprone-reserved-identifier.AllowedIdentifiers: '__asan_default_options'