kulsoomimran/Todos-app
0
1[tool.black]2line-length = 883target-version = ['py311']4include = '\.pyi?$'5extend-exclude = '''6/(7 # directories8 \.eggs9 | \.git10 | \.venv11 | venv12 | build13 | dist14 | __pycache__15)/16'''17 18[tool.isort]19profile = "black"20multi_line_output = 321include_trailing_comma = true22force_grid_wrap = 023use_parentheses = true24ensure_newline_before_comments = true25line_length = 8826 27[tool.pytest.ini_options]28testpaths = ["backend/tests"]29python_files = ["test_*.py", "*_test.py"]30python_classes = ["Test*"]31python_functions = ["test_*"]32asyncio_mode = "auto"