pyproject.toml 215 B

1234567891011121314151617181920
  1. [tool.black]
  2. line-length = 79
  3. target-version = ['py39']
  4. include = '\.py?$'
  5. exclude = '''
  6. /(
  7. \.git
  8. | \.tox
  9. | \.venv
  10. | _build
  11. | build
  12. | dist
  13. | tests
  14. | lcl
  15. | alembic
  16. | pagure/hooks/files
  17. )/
  18. '''