docs(contributing_code.md): update docs

This commit is contained in:
Krrish Dholakia 2025-03-13 19:57:57 -07:00
parent dcab9c31e9
commit 342065b552

View file

@ -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!