Spaces:
Sleeping
Sleeping
File size: 278 Bytes
b1fdcc2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[tool.black]
line-length = 100
target-version = ['py39', 'py310']
preview_string_processing = true
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.ruff]
line-length = 100
ignore = ['E501']
[tool.pytest.ini_options]
pythonpath = [
"app",
]
testpaths = "tests"
|