Skip to content

Instantly share code, notes, and snippets.

@kwokhou
Last active March 14, 2020 03:04
Show Gist options
  • Save kwokhou/15c1826f9c0a313f1d7f8f97aa1b3f6a to your computer and use it in GitHub Desktop.
Save kwokhou/15c1826f9c0a313f1d7f8f97aa1b3f6a to your computer and use it in GitHub Desktop.
Basic VS Code for JavaScript Developer

Basic extensions for JavaScript developer using VS code

VS Code Configurations

Enable intelisense on JavaScript

jsconfig.json

{
  "compilerOptions": {
    "checkJs": true,
    "module": "commonJS"
  },
  "exclude": ["node_modules"],
  "include": [
    "./node_modules/cypress",
    "cypress/**/*.js",
    "src/**/*"
  ]
}

Prettier config

.prettierrc

{
  "tabWidth":2,
  "useTabs":false,
  "semi":true,
  "singleQuote":true,
  "trailingComma":"es5"
}

Programmer Fonts

For those who work with React.js

  • Simple React Snippets

For those who work with Ruby

  • Ruby Solargraph
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment