Skip to content Skip to sidebar Skip to footer
Showing posts with the label Pylint

How To Avoid Pylint Not-an-iterable When Using A Custom Property Class

My code uses the commonly used cached_property class from werkzeug. Consider the following snippet:… Read more How To Avoid Pylint Not-an-iterable When Using A Custom Property Class

Pylint Not Recognizing Some Of The Standard Library

I'm using pylint + pydev, with python 2.6. I have a module with just this line of code from ema… Read more Pylint Not Recognizing Some Of The Standard Library

For Pylint, Is It Possible To Have A Different Pylintrc File For Each Eclipse Project?

I saw I can change it per Eclipse instance using this solution. I would like to set it per project.… Read more For Pylint, Is It Possible To Have A Different Pylintrc File For Each Eclipse Project?

Why Does Django-lint Tell Me The `auto_now_add` Is Deprecated?

Hi fellow Djangonauts: I checked my project with django-lint, and it yields: W:211,16:MyModel: time… Read more Why Does Django-lint Tell Me The `auto_now_add` Is Deprecated?

Python Static Code Analysis Tools - Code Analysis (preliminary Research Question)

Disclaimer: I've just started researching this area/domain of knowledge; so I have no idea what… Read more Python Static Code Analysis Tools - Code Analysis (preliminary Research Question)

Pylint To Show Only Warnings And Errors

I would like to use pylint to check my code but I am only interested in error and warning levels. I… Read more Pylint To Show Only Warnings And Errors

Can Pylint Error Checking Be Customized?

I am using pydev where I have set up pylint. The problem is that even inside the comments, pylint r… Read more Can Pylint Error Checking Be Customized?

Seek Python Warning For A Multiply Defined Function

Q: is there a way to get Python to give me a warning when there is more than one definition of the … Read more Seek Python Warning For A Multiply Defined Function