Create contributor_guide.md (#992)

This commit is contained in:
Ying Sheng
2024-08-08 03:58:47 -07:00
committed by GitHub
parent 3a79613c28
commit 228cf47547

View File

@@ -0,0 +1,11 @@
# Contributor Guide
## Format Your Code
Use these commands to format your code and pass CI linting tests.
```
pip3 install pre-commit
cd sglang
pre-commit install .
pre-commit run --all-files
```