How can I suppress pep8 warnings, in Visual studio code? What I want to do is to suppress E501 warning I don\'t want to get warnings where my code length is more than 80 chars.
What worked for me was adding the code snippet below to my user settings.json file. This was mentioned above but without the settings.json.
"python.linting.flake8Enabled": true, "python.linting.flake8Args": ["--ignore=E501"]