diff --git a/docs/en/contributor_guide.md b/docs/en/contributor_guide.md new file mode 100644 index 000000000..7a87187c1 --- /dev/null +++ b/docs/en/contributor_guide.md @@ -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 +```