File size: 361 Bytes
9f4b9c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Contributing to this repository
## Install linter
First of all, you need to install `ruff` package to verify that you passed all conditions for formatting.
```
pip install ruff==0.0.287
```
### Apply linter before PR
Please run the ruff check with the following command:
```
ruff check .
```
### Auto-fix with fixable errors
```
ruff check . --fix
``` |