2
0

pyproject.toml 434 B

1234567891011121314151617181920212223242526
  1. [tool.black]
  2. line-length = 100
  3. target-version = ['py37']
  4. include = '\.pyi?$'
  5. exclude = '''
  6. (
  7. /(
  8. \.eggs # exclude a few common directories in the
  9. | \.git # root of the project
  10. | \.hg
  11. | \.mypy_cache
  12. | \.tox
  13. | \.venv
  14. | _build
  15. | buck-out
  16. | build
  17. | dist
  18. | wagtailcrx/project_template
  19. | wagtailcrx/tests/settings.py
  20. | .*/migrations
  21. | \.github
  22. | ci
  23. )/
  24. )
  25. '''