Answers for "ejs formatter vscode"

1

vscode ejs formatter

// install digitalbrainstem.javascript-ejs-support

//then add this to settings.json
{
  "html.format.templating": true
}
Posted by: Guest on December-22-2020
1

ejs formatter vscode

// Go to vscode settings (Ctrl + Comma) then search for "files.associations"
// Finally add following lines into your vscode settings 
// (or add that using vscode GUI settings by providing key (*.ejs) and value (html))

"files.associations": {
  "*.ejs": "html"
}
Posted by: Guest on March-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language