setup.cfg 462 B

1234567891011121314151617181920212223242526
  1. [metadata]
  2. description_file=README.md
  3. [tool:pytest]
  4. testpaths = tests
  5. addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end
  6. [flake8]
  7. max-line-length = 100
  8. extend-ignore = E203,E501,W503
  9. exclude = *.*/*
  10. multiline-quotes = '''
  11. docstring-quotes = '''
  12. [tool:isort]
  13. profile=black
  14. known_first_party = borgmatic
  15. line_length = 100
  16. skip = .tox
  17. [codespell]
  18. skip = .git,.tox,build
  19. [pycodestyle]
  20. ignore = E203
  21. max_line_length = 100