pyproject.toml 311 B

1234567891011121314151617181920212223242526
  1. [tool.black]
  2. line-length = 110
  3. target-version = ['py37']
  4. include = '\.pyi?$'
  5. exclude = '''
  6. /( # Default config
  7. \.git
  8. | \.hg
  9. | \.mypy_cache
  10. | \.tox
  11. | \.venv
  12. | build
  13. | dist
  14. # Our config
  15. | node_modules
  16. | migrations
  17. | env
  18. | .env
  19. | venv
  20. | .venv
  21. | .pytest_cache
  22. | .pipcache
  23. )/
  24. '''