From 228cf47547a3d2f7f38f636f40a5e85b0c3cd646 Mon Sep 17 00:00:00 2001 From: Ying Sheng Date: Thu, 8 Aug 2024 03:58:47 -0700 Subject: [PATCH] Create contributor_guide.md (#992) --- docs/en/contributor_guide.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/en/contributor_guide.md 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 +```