I am using pydev where I have set up pylint.
The problem is that even inside the comments, pylint reports warnings. I was looking to disable any sort of checking inside any line or a block comment.
Also, I wish to follow camelCase naming convention instead of underscores for variables and arguments in my code.
Is there any way to specify such a rule without inserting my code with any pylint: disable comments?
I am using pydev where I have set up pylint. The problem is that
Share
You can globally disable warnings of a certain class using
or by using a special PyLint configuration file
A sample config file is given below:
See the documentation over at Pylint’s dedicated site.