summaryrefslogtreecommitdiffstats
path: root/.claude/hooks/clang-format.sh
blob: 28b4c9c0a65519248915f684aef1b08ddabf5a33 (plain)
1
2
3
4
5
#!/bin/bash
file_path=$(jq -r '.tool_input.file_path')
if [[ "$file_path" =~ \.(c|h|cpp|hpp)$ ]]; then
	clang-format -i "$file_path"
fi