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
I ran pylint in its default configuration, and I noticed some additional checks that might be useful to us. We should investigate whether turning each of these on will benefit us. There is currently at least one example of each of the following violations in the code base.
consider-using-generator
consider-using-f-string
unidiomatic-typecheck
wrong-import-order
wrong-import-position
unnecessary-comprehension
no-else-return
arguments-renamed
consider-using-enumerate
unnecessary-lambda
consider-merging-isinstance
The text was updated successfully, but these errors were encountered:
We'll need to disable wrong-import-order and wrong-import-position on the notebooks, as we deliberately import things right before we use them in the docs. But that will be easy because they are actually processed in a separate call to pylint:
I ran pylint in its default configuration, and I noticed some additional checks that might be useful to us. We should investigate whether turning each of these on will benefit us. There is currently at least one example of each of the following violations in the code base.
The text was updated successfully, but these errors were encountered: