summary refs log tree commit diff
path: root/.ci/format.sh
diff options
context:
space:
mode:
Diffstat (limited to '.ci/format.sh')
-rwxr-xr-x.ci/format.sh13
1 files changed, 0 insertions, 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