From c8879e7c076bd865e2e0f19638b1a0f6fe943f0c Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 25 Jul 2021 19:03:56 -0400 Subject: [PATCH] Remove QML from format script (it causes too many issues) --- .ci/format.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.ci/format.sh b/.ci/format.sh index 2d922ee1..cc4a3b82 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -14,17 +14,4 @@ do clang-format -i "$f" done; -QMLFORMAT_PATH=$(command -v qmlformat || true) - -if [ -n "$QMLFORMAT_PATH" ]; then - QML_FILES=$(find resources -type f -iname "*.qml") - - for f in $QML_FILES - do - $QMLFORMAT_PATH -i "$f" - done; -else - echo "qmlformat not found; skipping qml formatting" -fi - git diff --exit-code