contributor_guide.md 198 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
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
```