How do I disable a Pylint specific error message globally?
pylint --generate-rcfile > ~/.pylintrc
Then add "disable": "C0103"
to this file.
In order for pylint to automatically pick up your rc file, it should be located at ~/.pylintrc
. Otherwise you would need to pass the rc file as an argument on every invocation of pylint.