summaryrefslogtreecommitdiffstats
path: root/.claude/hooks/qml-format.sh
blob: 70ad656ee20841df5e6be4536991c7148e9d1627 (plain)
1
2
3
4
5
#!/bin/bash
file_path=$(jq -r '.tool_input.file_path')
if [[ "$file_path" =~ \.qml$ ]]; then
	qmlformat --inplace "$file_path"
fi