clang-tidy: Enable readability-redundant-member-init check

Finds member initializations that are unnecessary because the same
default constructor would be called if they were not present.

Signed-off-by: George Liu <liuxiwei@ieisystem.com>
Change-Id: Ia112636b43360f6a4e14c0a7a80a2635754325c7
diff --git a/.clang-tidy b/.clang-tidy
index bbd7490..ef9193b 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -267,6 +267,7 @@
 readability-non-const-parameter,
 readability-redundant-access-specifiers,
 readability-redundant-function-ptr-dereference,
+readability-redundant-member-init,
 readability-redundant-preprocessor,
 readability-redundant-smartptr-get,
 readability-redundant-string-init,