Is it possible to distinguish between errors that come from the linter (syntax errors) and PEP-8 violations? I'd like to have different colors and symbols for them.
If not possible, according to Flake8 docs there is at least one error code that is different from the others E999 that is raised when the file does not compile in a correct syntax tree, and that could be catched in a different category?
Thanks!
Is it possible to distinguish between errors that come from the linter (syntax errors) and PEP-8 violations? I'd like to have different colors and symbols for them.
If not possible, according to Flake8 docs there is at least one error code that is different from the others E999 that is raised when the file does not compile in a correct syntax tree, and that could be catched in a different category? Thanks!