Skip to content

Instantly share code, notes, and snippets.

@EduardoRFS
Created September 12, 2019 17:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EduardoRFS/d6e7759ad3bc813208926600c300a4d9 to your computer and use it in GitHub Desktop.
Save EduardoRFS/d6e7759ad3bc813208926600c300a4d9 to your computer and use it in GitHub Desktop.
VSCode settings
{
// fonts
"editor.fontSize": 18,
"markdown.preview.fontSize": 18,
"terminal.integrated.fontSize": 18,
"editor.fontLigatures": true,
"editor.fontFamily": "'Fira Code'",
"terminal.integrated.fontFamily": "Consolas, 'Fira Code'",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Material Theme Darker High Contrast",
"files.eol": "\n",
"editor.tabSize": 2,
"editor.rulers": [80],
"editor.formatOnSave": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
// formatter
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment