I wrote the code below on VSCode:
"""Say Hello"""
print("Hello" )
Then, Flake8 extension can show E202 error for print("Hello" ) as shown below:
whitespace before ')' Flake8(E202)
But, Pylint extension cannot show E202 error for print("Hello" ) as shown below:
So, how can I enable Pylint extension to show E202 error on VSCode?


pylint does not have a rule to catch that type of issues.
If I use the CLI commands, I can see that pylint does not show this as a problem:
So, the pylint extension does not show it.