Skip to content

Instantly share code, notes, and snippets.

@andyalmeida
Last active October 16, 2019 23:41
Show Gist options
  • Select an option

  • Save andyalmeida/049c17ee92d2b2af40b5b61e8e4b1a2f to your computer and use it in GitHub Desktop.

Select an option

Save andyalmeida/049c17ee92d2b2af40b5b61e8e4b1a2f to your computer and use it in GitHub Desktop.
VSCode Configuration

VSCode Configurations

Instaled extensions

  • Color Highlight
  • Dracula Official
  • EditorConfig for VS Code
  • ESLint
  • MaterialIcon Theme
  • Rocketseat React Native
  • Rocketseat ReactJS
{
//Theme
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
//Font config
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
//Editor configs
"editor.rulers": [80, 120], //vertical lines to remember breaking line
"editor.tabSize": 2,
"editor.renderLineHighlight": "gutter",
"editor.parameterHints.enabled": false,
"editor.formatOnSave": false,
"breadcrumbs.enabled": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.shell.osx": "/bin/zsh",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
},
],
//JSConfig
"javascript.updateImportsOnFileMove.enabled": "never",
"javascript.suggest.autoImports": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment