We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8bbfc0 commit d227131Copy full SHA for d227131
CONTRIBUTING.md
@@ -12,6 +12,11 @@ Thank you for your interest in contributing to the MCP Python SDK! This document
12
```bash
13
uv sync --frozen --all-extras --dev
14
```
15
+6. Set up pre-commit hooks:
16
+
17
+ ```bash
18
+ uv tool install pre-commit --with pre-commit-uv --force-install
19
+ ```
20
21
## Development Workflow
22
@@ -40,6 +45,12 @@ uv run ruff check .
40
45
uv run ruff format .
41
46
42
47
48
+7. (Optional) Run pre-commit hooks on all files:
49
50
+```bash
51
+pre-commit run --all-files
52
+```
53
43
54
7. Submit a pull request to the same branch you branched from
44
55
56
## Code Style
0 commit comments