You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
409 B

2 years ago
  1. [tool.black]
  2. line-length = 120
  3. target-version = ['py37', 'py38']
  4. include = '\.pyi?$'
  5. [tool.isort]
  6. profile = "black"
  7. include_trailing_comma = true
  8. multi_line_output = 3
  9. [tool.flake8]
  10. max-line-length = 120
  11. max-complexity = 18
  12. ignore = "E203,E266,W503,"
  13. filename = "backend/*"
  14. [tool.mypy]
  15. python_version = "3.8"
  16. ignore_missing_imports = true
  17. show_error_codes = true
  18. exclude = "(migrations)|(app/settings.py)"