DEV Community

Thiago
Thiago

Posted on

Remove vertical line VSCODE on dart files

Step 1: Go to Preferences -> Settings
Step 2: Search for editor rulers and click on edit in settings.json
Step 3: Edit dart line and set editor.rules to empty:

"[dart]" : {
"editor.rulers": []
}

Top comments (0)