We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf77483 commit 9f723baCopy full SHA for 9f723ba
README.md
@@ -35,3 +35,18 @@ source venv/Scripts/activate # Windows
35
```bash
36
pip install -r requirements.txt
37
```
38
+
39
+## Using Ruff
40
41
+To integrate Ruff into your workflow, use the following commands:
42
43
+```bash
44
+# Run linting checks on all files
45
+ruff check .
46
47
+# Automatically fix all fixable lint issues
48
+ruff check . --fix
49
50
+# Format code according to Ruff’s rules
51
+ruff format .
52
+```
0 commit comments