Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 361 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (15 loc) · 361 Bytes

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