Remove QML from format script (it causes too many issues)

pull/662/head
Joe 3 years ago
parent 570d00b000
commit c8879e7c07
  1. 13
      .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

Loading…
Cancel
Save