pyproject.toml 688 B

1234567891011121314151617181920212223242526272829
  1. [tool.black]
  2. line-length = 88
  3. target-version = ['py36', 'py37', 'py38', 'py39']
  4. include = '\.pyi?$'
  5. exclude = '''
  6. (
  7. # exclude directories in the root of the project
  8. /(
  9. \.eggs
  10. | \.git
  11. | \.hg
  12. | \.mypy_cache
  13. | \.tox
  14. | \.venv
  15. | _build
  16. | buck-out
  17. | build
  18. | bin\..*
  19. | dist\..*
  20. )/
  21. | python/libgrass_interface_generator/
  22. # Bug in Black related to r-string prefix capitalization reformats
  23. # a line in this file unnecessarily. File is however fully Black-formatted
  24. # at the time of writing.
  25. # https://github.com/psf/black/issues/1244
  26. | python/grass/pygrass/utils.py
  27. )
  28. '''