Include default directories to exclude with Black

Signed-off-by: Dan Yeaw <dan@yeaw.me>
This commit is contained in:
Dan Yeaw 2019-04-19 22:33:15 -04:00
parent 9e14321648
commit 8e3af5c14c
No known key found for this signature in database
GPG Key ID: 77A923EF537B61A4

View File

@ -78,7 +78,18 @@ gaphorconvert = 'gaphor.tools.gaphorconvert:main'
"elementeditor" = "gaphor.ui.elementeditor:ElementEditor"
[tool.black]
exclude = "msvc9compiler.py"
exclude = '''
(
/(
\.eggs
| \.git
| \.venv
| build
| dist
)/
| msvc9compiler.py
)
'''
[build-system]
requires = ["setuptools", "wheel", "poetry>=0.12"]