Answers for "how to save in vs code"

3

on save format vs code

//In the setting.json.. check this

{
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  }
}
Posted by: Guest on September-22-2021
3

How do you format code on save in VS Code

"editor.formatOnSave": true
Posted by: Guest on November-19-2020
0

write code faster in vscode

1-type ".container" without quotation then press tab. The result is
<div class="container"></div>
2-type "h1#container" without quotation then press tab. The result is
<h1 id="container"></h1> 
3-type "div>h1" without quotation then press tab. The result is
<div>
  <h1>
  </h1>
</div>
4-type "a[href="#"]" without quotation then press tab. The result is
<a href="#"></a>
5-type "p{Hello World!}" without quotation then press tab. The result is
<p>Hello World!</p>
Posted by: Guest on November-12-2020

Browse Popular Code Answers by Language