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
Although this is an old question, it should be mentioned one can now specify their own regex for matching with names.
Then your regex to match camel case would be something like:
[a-z][a-zA-Z0-9]{2,30}$