How can vertical rulers (note the plural) be configured in Visual Studio Code?
In Sublime Text 2 I can do
\"rulers\": [72, 80, 100, 120]
Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty.
"editor.rulers": [],
Configure settings to be overridden for [git-commit] language.
"[git-commit]": {
"editor.rulers": [72],
"workbench.editor.restoreViewState": false
},