ryan-roemer / django-cloud-browser

Django application browser for cloud datastores (Rackspace, AWS, etc.).
http://ryan-roemer.github.com/django-cloud-browser/
MIT License
81 stars 27 forks source link

Add pycodestyle #15

Closed ryan-roemer closed 5 years ago

ryan-roemer commented 6 years ago

We've removed old pep8. Should get a new pycodestyle.

Possible config:

[pycodestyle]
# * E402: module level import not at top of file
# * E501: line too long (82 > 79 characters) (enforced by pylint)
# * E731: do not assign a lambda expression, use a def
ignore = E402,E501,E731
statistics = True