参考:Disable White Vertical Line - StackOverflow
在 VSCode Settings.json
中找到如下代码
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
将 editor.rulers
改为空数组即可
"editor.rulers": []
good