prettier auto format code example
Example 1: prettier on save vscode
{
"folders": [],
"settings": {},
"editor.formatOnSave": true,
}
Example 2: prettier html formatting
"html.format.wrapAttributes": "force",
"html.format.wrapLineLength": 40,
Example 3: prettier code formatter is removing ;
{ "trailingComma":"none", "tabWidth": 4, "semi": true, "singleQuote": false}