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