docs(): added linting and formatting docs

This commit is contained in:
ITQ
2026-02-23 16:54:48 +03:00
parent 15d80532e0
commit 85bed92364
2 changed files with 30 additions and 2 deletions
+26
View File
@@ -121,3 +121,29 @@ just test-coverage
```bash
just show-coverage
```
## Linting && Formatting
### Clone the project
### Go to the project directory
### Install dependencies
```bash
uv sync --all-extras
```
### Run format
```bash
just format
```
### Run lint
```bash
just lint
# OR
just fix # applies suggested fixes
```