| 1 | [tool.black] |
| 2 | line-length = 140 |
| 3 | target-version = ['py38', 'py39'] |
| 4 | include = '\.pyi?$' |
| 5 | exclude = ''' |
| 6 | /( |
| 7 | \.git |
| 8 | | \.hg |
| 9 | | \.mypy_cache |
| 10 | | \.tox |
| 11 | | \.venv |
| 12 | | _build |
| 13 | | buck-out |
| 14 | | build |
| 15 | | dist |
| 16 | )/ |
| 17 | ''' |
| 18 | |
| 19 | [tool.isort] |
| 20 | profile = "black" |
| 21 | force_single_line = true |
| 22 | src_paths = "backend" |