1[tool.black]
2line-length = 88
3#py36 = false  # don't strip 'u' from native strings
4target-version = ['py27', 'py35', 'py36', 'py37', 'py38']
5include = '\.pyi?$'
6exclude = '''
7/(
8    \.git
9  | \.hg
10  | \.tox
11  | \.venv
12  | \.eggs
13  | \.cache
14  | build
15  | __pycache__
16  | dist
17  | \.*
18
19)/
20'''
21
22[tool.isort]
23# See https://black.readthedocs.io/en/stable/compatible_configs.html
24profile = "black"
25src_paths = ["wsgidav", "tests"]
26
27
28# [tool.flake8]
29# Flake8 currently does not support pyproject.toml.
30# See [flake8] section in setup.cfg instead.
31