add: toml file for black formatter config

This commit is contained in:
Dineshkarthik 2020-12-12 21:42:28 +01:00
parent eab306ca2e
commit fb7b6f0dcb
No known key found for this signature in database
GPG key ID: E256EF0EECD6F201

21
pyproject.toml Normal file
View file

@ -0,0 +1,21 @@
[tool.black]
line-length = 79
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| bin
| lib
| include
)/
)
'''