Creating .pylintrc only doesn't work for me, so you need to tell VSCode that the .pylintrc is located in your root project folder:
.pylintrc:[MESSAGES CONTROL]
disable=C0103
./.vscode/settings.json:{
"python.linting.pylintArgs": [
"--rcfile=./.pylintrc"
]
}