Add Black and Flake8

This commit is contained in:
Alex RootJunior 2019-06-29 19:53:18 +03:00
parent 5b9d82f1ca
commit 7c51b1a7d7
124 changed files with 5841 additions and 3772 deletions

17
pyproject.toml Normal file
View file

@ -0,0 +1,17 @@
[tool.black]
line-length = 99
target-version = ['py37', 'py38']
exclude = '''
(
/(
\.eggs
| \.git
| \.tox
| build
| dist
| venv
| docs
)/
| foo.py
)
'''