Skip to content

Instantly share code, notes, and snippets.

@thomijasir
Created February 18, 2018 03:49
Show Gist options
  • Save thomijasir/00c6d6d89a530ee5a9b7acacc57e754e to your computer and use it in GitHub Desktop.
Save thomijasir/00c6d6d89a530ee5a9b7acacc57e754e to your computer and use it in GitHub Desktop.
Setting Visual Code More Prety Code
# Heres Code make more beuty of you code in visual studio
# dont forget to install Prettier Code Formatter Before set up code below
# Control CTRL + , (coma) and input setting below inside curly braces
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.renderWhitespace": "all",
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.tabWidth": 4,
"prettier.useTabs": true,
"prettier.trailingComma": "all",
"prettier.printWidth": 100,
"files.eol": "\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment