I want to see a vertical line on my VS Code editor. There's a way to show It? How do I enable this?
I've already installed pylint and pep8. It seems to working fine. I just want to see the line in my editor.
The simplest way is to use the "editor.rulers" setting.
settings.json:
{
"[python]": {
"editor.rulers": [100]
}
}