mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-17 11:43:26 +08:00
* docs(zh-CN): sync Chinese docs with latest upstream changes * docs: improve Chinese translation consistency in go-test.md * docs(zh-CN): update image paths to use shared assets directory - Update image references from ./assets/ to ../../assets/ - Remove zh-CN/assets directory to use shared assets --------- Co-authored-by: neo <neo.dowithless@gmail.com>
15 lines
402 B
Markdown
15 lines
402 B
Markdown
# Python 钩子
|
|
|
|
> 本文档扩展了 [common/hooks.md](../common/hooks.md) 中关于 Python 的特定内容。
|
|
|
|
## PostToolUse 钩子
|
|
|
|
在 `~/.claude/settings.json` 中配置:
|
|
|
|
* **black/ruff**:编辑后自动格式化 `.py` 文件
|
|
* **mypy/pyright**:编辑 `.py` 文件后运行类型检查
|
|
|
|
## 警告
|
|
|
|
* 对编辑文件中的 `print()` 语句发出警告(应使用 `logging` 模块替代)
|