From 74e32dd96b8ed04d46802226551e72b68ab17e48 Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Mon, 11 Jan 2021 22:17:00 -0500 Subject: Update QtQuick versions to match Qt 5.10 --- .ci/format.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.ci') diff --git a/.ci/format.sh b/.ci/format.sh index e1e6c1e4..eaa995b8 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -8,10 +8,16 @@ set -eu FILES=$(find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \)) +QML_FILES=$(find resources -type f -iname "*.qml") for f in $FILES do clang-format -i "$f" done; +for f in $QML_FILES +do + qmlformat -i $f +done; + git diff --exit-code -- cgit 1.4.1