I am using the Sublime Text editor with Pylint as a Python code parser. It works fine, but whenever I define a variable, I get the following error message (C0103):
Error: Invalid constant name.
I read in this section that one solution can add # pylint: disable-msg=C0103 to the source code, but this solution is not enough for me because I have many variable definitions and I do not want to use my code for calls to Pylint . I need to disable error message C0103 all over the world, in all my Python source files. I have to get rid of this message forever. How can i do this?
error-handling pylint
renatov
source share