docs: update references from old linting tools to Ruff

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-13 09:13:15 +00:00
parent b03ebab747
commit 15a500540d
2 changed files with 6 additions and 8 deletions
@@ -7,13 +7,11 @@ applyTo: "app/**/*.py"
These instructions apply to all Python code in the `app/` directory.
## Code Style
- Use **Black** formatter with 120 character line length
- Use **isort** with Black profile for import organization
- Follow **flake8** rules (ignore E203, W503 as per `.pre-commit-config.yaml`)
- Use **Ruff** for linting and formatting with 120 character line length
- All functions must have type hints for parameters and return values
- Use `from typing import Optional, Dict, List, Any, Union` as needed
## Import Order (isort with Black profile)
## Import Order (Ruff enforces isort-compatible ordering)
```python
# Standard library imports
import os