diff --git a/docs/my-website/docs/extras/contributing_code.md b/docs/my-website/docs/extras/contributing_code.md index b730be9806e..ee46a330958 100644 --- a/docs/my-website/docs/extras/contributing_code.md +++ b/docs/my-website/docs/extras/contributing_code.md @@ -8,7 +8,7 @@ Here are the core requirements for any PR submitted to LiteLLM - [ ] Add testing, **Adding at least 1 test is a hard requirement** - [see details](#2-adding-testing-to-your-pr) - [ ] Ensure your PR passes the following tests: - [ ] [Unit Tests](#3-running-unit-tests) - - [ ] Formatting / Linting Tests + - [ ] [Formatting / Linting Tests](#35-running-linting-tests) - [ ] Keep scope as isolated as possible. As a general rule, your changes should address 1 specific problem at a time @@ -64,7 +64,7 @@ run the following command on the root of the litellm directory make lint ``` -LiteLLM uses mypy for linting. +LiteLLM uses mypy for linting. On ci/cd we also run `black` for formatting. ## 4. Submit a PR with your changes!