Open
Description
For auto-formatting issue, I suppose it will be better to setup eslint/prettier/editor config for vscode to enable consistent code linting and auto-formatting.
An example prettier config can be
"prettier": {
"trailingComma": "all",
"semi": true,
"singleQuote": false,
"endOfLine": "lf"
},
You can refer to your older editor setup to ensure consistant linting and formating.