14 lines
282 B
TOML
14 lines
282 B
TOML
[tool.black]
|
|
line-length = 100
|
|
target-version = ['py312']
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
select = ["E","F","I","UP"]
|
|
ignore = ["E203","E501"]
|
|
|
|
[tool.pytest.ini_options]
|
|
DJANGO_SETTINGS_MODULE = "project.config.settings"
|
|
python_files = ["tests.py","test_*.py"]
|
|
asyncio_mode = "auto"
|