-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conventions for linting the code? #457
Comments
@rht do you know any integrations that could apply lint checking on PRs? |
There is https://pep8speaks.com/ used by several projects. This takes several seconds to catch lint errors rather than having to wait a few minutes of Travis booting up and running |
Btw, there are lots of whitespace before/after
mostly on literal matrices that are intentionally formatted to be that way.
and so have to resort to |
thanks @rht. I have installed There are a few violations that we have intentially ignored and whitespace around matrices has been traditionally one of them. |
I ran
flake8 --ignore=F401,E501,E226,E231,W291,E241 quantecon
. Found ~405 lint errors excluding the errors I explicitly ignore. There are unused variables and imports scattered around. Would it be fine if I apply yapf to the codebase?The text was updated successfully, but these errors were encountered: