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
Further to the above answer from pradyunsg, here is another regex for CamelCase:
^([a-z]\w+[A-Z]+\w+)
(Taken from PyLint's spelling.py checker, found in: %APPDATA% - Local - Programs - Python - [PythonVersion] - Lib - site-packages - pylint - checkers folder)
spelling.py
%APPDATA% - Local - Programs - Python - [PythonVersion] - Lib - site-packages - pylint - checkers