From 5efc48ff749a73d17284c30b378ef5f8fafd99cd Mon Sep 17 00:00:00 2001 From: whaffman Date: Thu, 16 Oct 2025 00:39:16 +0200 Subject: [PATCH] probably useless chore: update clang-tidy checks to include noexcept-related rules --- .clang-tidy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index a713116..146ad17 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -2,8 +2,11 @@ Checks: > bugprone-*, clang-analyzer-*, cppcoreguidelines-*, + cppcoreguidelines-noexcept-move-operations, modernize-*, + modernize-use-noexcept, performance-*, + performance-noexcept-move-constructor, readability-*, -modernize-use-trailing-return-type, -modernize-avoid-c-arrays,