setup.cfg 344 B

12345678910111213141516
  1. [flake8]
  2. exclude = labours/pb_pb2.py
  3. ignore = D,B007,
  4. # Spurious "unused import" / "redefinition" errors:
  5. F401,F811
  6. import-order-style = appnexus
  7. inline-quotes = "
  8. max-line-length = 99
  9. application-import-names = labours
  10. [isort]
  11. force_sort_within_sections = true
  12. line_length = 99
  13. lines_between_types = 0
  14. multi_line_output = 0