.flake8 214 B

12345
  1. [flake8]
  2. max-line-length = 88
  3. # We ignore E501 as black handles it for us, and in a way that ignores strings
  4. # that go over the line length, as opposed to flake8 which flags such strings.
  5. extend-ignore = E203,E501