setup.cfg 698 B

1234567891011121314151617181920
  1. [flake8]
  2. # File filtering is taken care of in pre-commit.
  3. # E203 false positive, see https://github.com/PyCQA/pycodestyle/issues/373
  4. # B011 We don't use PYTHONOPTIMIZE.
  5. ignore = F999,E203,E501,E128,E124,E402,W503,W504,E731,C901,B007,B009,B010,B011
  6. # XXX: E501 is ignored, which disables line length checking.
  7. # Currently, the black formatter doesn't wrap long strings: https://github.com/psf/black/issues/182#issuecomment-385325274
  8. # We already have a lot of E501's - these are lines black didn't wrap.
  9. # But rather than append # noqa: E501 to all of them, we just ignore E501 for now.
  10. [bdist_wheel]
  11. python-tag = py38
  12. [coverage:run]
  13. omit =
  14. src/sentry/migrations/*
  15. source =
  16. src
  17. tests