.flake8 565 B

123456789101112131415161718
  1. [flake8]
  2. max-line-length = 125
  3. ignore = E203,E211,E221,E225,E231,E241,E251,E261,E266,E501,E701,E704,W503
  4. exclude =
  5. # Do not traverse examples and tools
  6. examples,
  7. tools,
  8. # Do not include package initializers
  9. __init__.py,
  10. # No need to traverse our git directory
  11. .git,
  12. # There's no value in checking cache directories
  13. __pycache__,
  14. # No need to include the build path
  15. build,
  16. # This contains builds that we don't want to check
  17. dist # This is generated with `python build .` for package releases
  18. # max-complexity = 10