summaryrefslogtreecommitdiffstats
path: root/.claude/hooks/cmake-format.sh
blob: fc1f2cc07ca3b551044aeb8374501e56634160ad (plain)
1
2
3
4
5
#!/bin/bash
file_path=$(jq -r '.tool_input.file_path')
if [[ "$file_path" =~ (CMakeLists\.txt|\.cmake)$ ]]; then
	cmake-format -i "$file_path"
fi