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.
Please try double qoute " instead of single '
"
'
['--ignore=E501'] --> ["--ignore=E501"]
['--ignore=E501']
["--ignore=E501"]
It worked for me. Don't forget to restart the program.