pyproject.toml 217 B

123456789101112131415161718
  1. [tool.black]
  2. line-length = 120
  3. skip-string-normalization = true
  4. include = '\.pyi?$'
  5. exclude = '''
  6. /(
  7. \.git
  8. | \.hg
  9. | \.mypy_cache
  10. | \.tox
  11. | \.venv
  12. | venv
  13. | _build
  14. | buck-out
  15. | build
  16. | dist
  17. )/
  18. '''