Skip to content

Instantly share code, notes, and snippets.

@gustavom
Created August 6, 2019 18:51
Show Gist options
  • Save gustavom/9915cb1760ff4092353c8e4355911f85 to your computer and use it in GitHub Desktop.
Save gustavom/9915cb1760ff4092353c8e4355911f85 to your computer and use it in GitHub Desktop.
vscode
// Place your settings in this file to overwrite the default settings
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Dracula",
"window.zoomLevel": 0,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"editor.rulers": [80, 120],
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.tabSize": 2,
"editor.renderLineHighlight": "gutter",
"editor.parameterHints.enabled": false,
"editor.wordWrap": "off",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontSize": 14,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascipt": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"prettier.eslintIntegration": true,
"prettier.disableLanguages": ["html"],
"html.format.enable": true,
"html.format.indentInnerHtml": true,
"workbench.iconTheme": "vscode-icons"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment