[tool.ruff] line-length = 100 target-version = "py312" [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] ignore = ["E501"] [tool.black] line-length = 100 target-version = ["py312"] [tool.isort] profile = "black" line_length = 100 [tool.pytest.ini_options] DJANGO_SETTINGS_MODULE = "config.settings.testing" python_files = ["test_*.py", "*_test.py"] addopts = "--reuse-db --cov=apps --cov=core --cov-report=term-missing -n auto"