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.
If you want to change the line length, add this in your User Settings file
{ "python.linting.pep8Enabled": true, "python.linting.pep8Args": ["--max-line-length=120" ] }
previous code was giving me 'EOF' error, so i edited it
'EOF'