Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920
  1. [bdist_wheel]
  2. universal=1
  3. [pytest]
  4. python_files=test_*.py *tests.py
  5. testpaths = tests/
  6. [flake8]
  7. exclude = migrations
  8. ignore = F405,W503
  9. max-complexity = 10
  10. max-line-length=99
  11. [isort]
  12. line_length = 79
  13. multi_line_output = 4
  14. balanced_wrapping = true
  15. known_first_party = oscar,tests
  16. use_parentheses = true
  17. skip_glob=*/src/oscar/**/migrations/*.py,*/tests/**/*.py