Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:44:15 +08:00
commit 8c063d258e
6 changed files with 298 additions and 0 deletions

17
hooks/hooks.json Normal file
View File

@@ -0,0 +1,17 @@
{
"description": "Automatic CSharpier formatting for C# files",
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/format-csharp.sh\"",
"timeout": 30
}
]
}
]
}
}