.flake8 368 B

12345678910111213141516
  1. [flake8]
  2. ignore = C101,D403,E126,E251,F403,F405,I100,I201,W291,W503,W504
  3. exclude =
  4. **/migrations/*,
  5. .git,
  6. .mypy_cache,
  7. __pycache__,
  8. venv
  9. filename = *.py
  10. accept-encodings = utf-8
  11. inline-quotes = single
  12. max-linenumber = 500
  13. max-line-length = 150
  14. multiline-quotes = double
  15. per-file-ignores =
  16. backend/UnTube/settings/templates/settings.dev.py:F821