From 64e935a36fd2cc90f035f004aa07933333aca425 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Sat, 17 Aug 2024 15:38:02 -0400 Subject: [PATCH] slight update to contributing docs --- docs/community/contributing.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/community/contributing.md b/docs/community/contributing.md index f858fc237..88ad71b5d 100644 --- a/docs/community/contributing.md +++ b/docs/community/contributing.md @@ -5,7 +5,7 @@ The usual process to make a contribution is to: 1. Check for existing related issues 2. Fork the repository and create a new branch 3. Make your changes -4. Make sure formatting, linting and tests passes. +4. Make sure formatting, linting and tests passes. 5. Add tests if possible to cover the lines you added. 6. Commit, and send a Pull Request. @@ -43,13 +43,14 @@ hatch test --cover --all Run automated formatting: ```bash -hatch fmt --formatter +hatch fmt ``` Run full linting and type checking: ```bash -hatch fmt +hatch fmt --check +hatch run types:check ``` ## Docs