123456789101112131415161718192021222324252627 |
- [project]
- requires-python = ">=3.10"
- [tool.ruff]
- exclude = [
- "app.py",
- "__init__.py",
- "tests/",
- ]
- line-length = 120
- [tool.ruff.lint]
- ignore-init-module-imports = true
- select = [
- "F",
- "I001",
- "I002",
- "UP",
- ]
- ignore = [
- "F403",
- "F405",
- "F821",
- "F841",
- "UP007",
- "UP032",
- ]
|