1 line
1.3 KiB
JSON
1 line
1.3 KiB
JSON
{"content": "{\n \"description\": \"Smart code formatting based on file type. Automatically formats code using Prettier, Black, gofmt, rustfmt, and other language-specific formatters.\",\n \"hooks\": {\n \"PostToolUse\": [\n {\n \"matcher\": \"Edit|MultiEdit\",\n \"hooks\": [\n {\n \"type\": \"command\",\n \"command\": \"if [[ \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.js || \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.ts || \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.jsx || \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.tsx || \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.json || \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.css || \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.html ]]; then npx prettier --write \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; elif [[ \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.py ]]; then black \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; elif [[ \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.go ]]; then gofmt -w \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; elif [[ \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.rs ]]; then rustfmt \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; elif [[ \\\"$CLAUDE_TOOL_FILE_PATH\\\" == *.php ]]; then php-cs-fixer fix \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; fi\"\n }\n ]\n }\n ]\n }\n}"} |