Skip to content

Instantly share code, notes, and snippets.

@antoniojps
Created September 25, 2019 13:42
Show Gist options
  • Select an option

  • Save antoniojps/cf882dd816aeb24c587ff6f7396b2af8 to your computer and use it in GitHub Desktop.

Select an option

Save antoniojps/cf882dd816aeb24c587ff6f7396b2af8 to your computer and use it in GitHub Desktop.
{
"eslint.validate": [
"javascript",
"javascriptreact",
{ "language": "vue", "autoFix": true }
],
"editor.fontFamily": "Fira Code, Consolas , Menlo, Monaco, 'Courier New', monospace, 'Apple Color Emoji'",
"editor.fontSize": 14,
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"prettier.eslintIntegration": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
"terminal.integrated.shell.osx": "zsh",
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.fontSize": 12,
"javascript.preferences.quoteStyle": "single",
"prettier.singleQuote": true,
"editor.formatOnType": true,
"editor.quickSuggestions": {
"strings": true
},
"editor.tabSize": 2,
"editor.insertSpaces": true,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"prettier.semi": false,
"editor.fontLigatures": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "none",
"typescript.autoImportSuggestions.enabled": false,
"javascript.validate.enable": false,
"workbench.iconTheme": "material-icon-theme",
"emmet.includeLanguages": {
"vue-html": "html",
"javascript": "javascriptreact"
},
"eslint.autoFixOnSave": true,
"editor.foldingStrategy": "indentation",
"git.autofetch": true,
"editor.formatOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"editor.minimap.enabled": true,
"workbench.colorTheme": "Night Owl",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/tmp": true,
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/bower_components/**": true,
"**/dist/**": true
},
"team.showWelcomeMessage": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment