Skip to content

Instantly share code, notes, and snippets.

@dibasdauliya
Last active May 16, 2021 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dibasdauliya/008a02509910f09ab4758f241fc648ae to your computer and use it in GitHub Desktop.
Save dibasdauliya/008a02509910f09ab4758f241fc648ae to your computer and use it in GitHub Desktop.
My VSCode Setup

Screenshot of Extensions Installed

screenshot

Settings.json

{
  "liveServer.settings.donotShowInfoMsg": true,
  "editor.wordWrap": "on",
  "emmet.syntaxProfiles": {
    "javascript": "jsx",
    "JSON": "json",
    "xml": {
      "attr_quotes": "single"
    }
  },
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },
  "terminal.integrated.defaultProfile.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  "workbench.startupEditor": "newUntitledFile",
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "eslint.enable": true,
  "editor.formatOnSave": true,
  "[javascript]": {
    "editor.formatOnSave": true
  },
  "prettier.jsxSingleQuote": true,
  "prettier.semi": false,
  "prettier.singleQuote": true,
  "prettier.trailingComma": "none",
  "diffEditor.wordWrap": "on"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment