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.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/.ci/format.sh b/.ci/format.sh
index eaa995b8..e1e6c1e4 100755
--- a/.ci/format.sh
+++ b/.ci/format.sh
@@ -8,16 +8,10 @@
 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