From 9419bebb9857f1ea39f248769003bfdfd4218a8a Mon Sep 17 00:00:00 2001 From: Samuel Susla Date: Thu, 23 Dec 2021 07:50:29 -0800 Subject: [PATCH] Enable modernize-use-bool-literals clang tidy rule Summary: changelog: [internal] You can read more about this rule on https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-bool-literals.html Reviewed By: feedthejim Differential Revision: D33295106 fbshipit-source-id: 34e68153a6796d5b9120166aeca6461ae0936e1e --- ReactCommon/react/renderer/.clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/ReactCommon/react/renderer/.clang-tidy b/ReactCommon/react/renderer/.clang-tidy index 1b0eae7ae04..63f7766edd6 100644 --- a/ReactCommon/react/renderer/.clang-tidy +++ b/ReactCommon/react/renderer/.clang-tidy @@ -15,5 +15,6 @@ modernize-make-unique, modernize-pass-by-value, modernize-raw-string-literal, modernize-replace-auto-ptr, +modernize-use-bool-literals, ' ...