tox.ini 586 B

12345678910111213141516171819202122
  1. [pycodestyle]
  2. # Several checks are disabled because they're incompatible with Google python
  3. # style.
  4. #
  5. # See https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes for
  6. # more details.
  7. ignore =
  8. # Google python style indents by two, not four. This trips a number of
  9. # rules:
  10. E111,E114,E129,
  11. # W504 enforces that line breaks are after binary operators.
  12. # W503 enforces the opposite. Disable it.
  13. W503
  14. max-line-length=80
  15. [flake8]
  16. # Same list as above
  17. ignore = E111,E114,E129,W503
  18. max-line-length=80
  19. exclude = .git,.idea,__pycache__,scripts/cpplint.py