pyproject.toml 253 B

123456789101112131415161718192021
  1. [tool.black]
  2. target-version = ['py37']
  3. line-length = 79
  4. include = '\.pyi?$'
  5. exclude = '''
  6. /(
  7. \.git
  8. | \.tox
  9. )/
  10. '''
  11. [tool.tox]
  12. legacy_tox_ini = '''
  13. [tox]
  14. envlist = style
  15. [testenv:style]
  16. deps =
  17. pre-commit
  18. commands = pre-commit run --all-files
  19. '''