ejs extensions in vs code code example
Example: 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"
}