Skip to content

Instantly share code, notes, and snippets.

@yszk0123
Last active January 19, 2018 02:15
Show Gist options
  • Save yszk0123/f46be0622324d5799c1c0504fe67e556 to your computer and use it in GitHub Desktop.
Save yszk0123/f46be0622324d5799c1c0504fe67e556 to your computer and use it in GitHub Desktop.
VS Code Settings Example
// .vscode/extensions.json
{
"recommendations": [
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
// .vscode/settings.json
{
"editor.formatOnSave": true,
"prettier.trailingComma": "all",
"prettier.singleQuote": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment