clang-tidy disable bugprone-narrowing-conversions

clang-tidy-13 adds this check, which we had in our config file.
dbus-sensors at this time doesn't even come close to passing this check,
so for the moment, remove it, with the intent of adding it back at some
point once we can get all the narrowing conversion warnings squashed.

Tested:
Code now passes clang-tidy-13 checks

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I7158d9ef2986ada3cb05c39ad64d1128b012d760
diff --git a/.clang-tidy b/.clang-tidy
index 0122e24..812a01d 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -22,7 +22,6 @@
 bugprone-misplaced-pointer-arithmetic-in-alloc,
 bugprone-misplaced-widening-cast,
 bugprone-multiple-statement-macro,
-bugprone-narrowing-conversions,
 bugprone-no-escape,
 bugprone-not-null-terminated-result,
 bugprone-parent-virtual-call,