You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are starting to write a large amount of python using varying styles. We should start using a linter to enforce formatting and stylistic guidelines
Pylint seems be the defacto linter. By default it enforces PEP8 which is the official standard. I don't necessarily agree with all of PEP8's standards and we can customize it with a pylintrc, however we should keep that to a minimum
Is it possible to include this with our CI stuff as well? That might be cool
The text was updated successfully, but these errors were encountered:
Agreed. I personally prefer to use auto formaters (autopep8 in this case) and just stop having format arguments. Lint rules would be a great add. We can create tasks to run pylint for sure.
We are starting to write a large amount of python using varying styles. We should start using a linter to enforce formatting and stylistic guidelines
Pylint seems be the defacto linter. By default it enforces PEP8 which is the official standard. I don't necessarily agree with all of PEP8's standards and we can customize it with a
pylintrc
, however we should keep that to a minimumIs it possible to include this with our CI stuff as well? That might be cool
The text was updated successfully, but these errors were encountered: