setup.cfg 443 B

12345678910111213141516171819
  1. [flake8]
  2. exclude = labours/pb_pb2.py
  3. ignore = D,B007,
  4. # Spurious "unused import" / "redefinition" errors:
  5. F401,F811,
  6. # Black formattings that aren't PEP8 compliant:
  7. W503,E203
  8. import-order-style = appnexus
  9. inline-quotes = "
  10. max-line-length = 99
  11. application-import-names = labours
  12. [isort]
  13. force_sort_within_sections = true
  14. line_length = 99
  15. lines_between_types = 0
  16. multi_line_output = 0
  17. order_by_type = false