Logo
BEAUTY IN SIMPLE

Digital Garden

A collection of short solutions to daily tech problems, notes, some thoughts and explorations that might convert into a blog post someday. My take on Learn in public concept.

title: "VS Code"

VS Code

  1. Open VSCode
  2. Open or create file/folder
  3. Search file
  4. Run prettier

Open VSCode

code .

Open or create file/folder

code index.html style.css documentation eadme.md

If the specified file does not exist, VS Code will create them for you along with any new intermediate folders.


Search file

ctrl + p

Run prettier

prettier “**/*.js” --write
js can be replaced on any other extension