I use Visual Studio Code to write Python code with Pylint.
When I press Ctrl + S (save), the editor wraps a long line into multiple short lines. How
Check your Python formatting provider.
"python.formatting.provider": "autopep8"
I guess in your case it is not Pylint which keeps wrapping the long lines, but autopep8. Try setting --max-line-length for autopep8 instead.
autopep8
--max-line-length
"python.formatting.autopep8Args": [ "--max-line-length=200" ]