Visual Studio Code Setup
Download Visual Studio Code at Visual Studio Code
User Settings
- Go to
Preferences > Settings
- Click on any
Edit in settings.json
- Copy the following and save the file
{
"dart.previewFlutterUiGuides": true,
"editor.wordWrap": "on",
"editor.renderWhitespace": "boundary",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.suggestSelection": "first",
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"files.insertFinalNewline": true,
"window.zoomLevel": 1,
"workbench.startupEditor": "newUntitledFile"
}

