I found the documentation for pep8 but wasn\'t able to understand how to write these. I couldn\'t even find any examples with options other than setting max-line-length and igno
They renamed pep8 to pycodestyle to avoid confusion.
You can create a setup.cfg file with:
[pycodestyle] ignore = E226,E302,E41 max-line-length = 119 exclude = tests/ docs/
For the error codes, you can read this documentation.