.flake8 544 B

1234567891011121314151617
  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
  6. examples,
  7. # Do not include package initializers
  8. __init__.py,
  9. # No need to traverse our git directory
  10. .git,
  11. # There's no value in checking cache directories
  12. __pycache__,
  13. # No need to include the build path
  14. build,
  15. # This contains builds that we don't want to check
  16. dist # This is generated with `python build .` for package releases
  17. # max-complexity = 10