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

This commit is contained in:
Joe 2021-07-25 19:03:56 -04:00
parent 570d00b000
commit c8879e7c07
1 changed files with 0 additions and 13 deletions

View File

@ -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