From 9f0290c0ec4f2ed3846f764efaf9219f3b205687 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sun, 17 Aug 2025 14:25:36 +0700 Subject: [PATCH] [ios] Disable clang-format temporary Signed-off-by: Konstantin Pastbin --- tools/unix/clang-format.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/unix/clang-format.sh b/tools/unix/clang-format.sh index 9c373b85e..d687778d0 100755 --- a/tools/unix/clang-format.sh +++ b/tools/unix/clang-format.sh @@ -9,8 +9,8 @@ XARGS_COMMAND='xargs -n1 -0 -P0 clang-format -i' find android/{app,sdk}/src -type f -name '*.java' -print0 | $XARGS_COMMAND find android/sdk/src/main/cpp -type f -name '*.[hc]pp' -print0 | $XARGS_COMMAND -# iOS -find iphone -type f -name '*.[hc]pp' -o -name '*.[hm]' -o -name '*.mm' -print0 | $XARGS_COMMAND +# TODO: iOS +# find iphone -type f -name '*.[hc]pp' -o -name '*.[hm]' -o -name '*.mm' -print0 | $XARGS_COMMAND # Core/C++ find dev_sandbox generator libs qt tools -type f -name '*.[hc]pp' -print0 | $XARGS_COMMAND