Go to menu File → Preferences → Settings and add this to to your user or workspace settings:

"editor.rulers": [80,120]

It is available since Visual Studio Code 0.10.10.

Per language

"[git-commit]": {"editor.rulers": [50]},
"[python]": {
    "editor.rulers": [
        79,
        120
    ]
}

📌 StackOverflow