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.
In case you are not using flake8Args but Pylama (for example) the configuration change on settings.json is similar as described before:
"python.linting.pylamaArgs": ["--max_line_length=120"]
or
"python.linting.pylamaArgs": [""--ignore=E501" "]