diff options
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 6 |
1 files changed, 6 insertions, 0 deletions
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 |