Visual Studio Code – In VS Code, how can I change the problem level of a certain error/violation from the Flake8 extension?
I'm using VS Code with Flake8 configured to check some obvious issues for my Python code. However, some of its errors are not really errors in my current development phase, e.g. E501 (line too long) and F401 (unused import). The…