Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. {
  2. "eslint.validate": [
  3. "javascript",
  4. "javascriptreact",
  5. { "language": "vue", "autoFix": true }
  6. ],
  7. "editor.fontFamily": "Fira Code, Consolas , Menlo, Monaco, 'Courier New', monospace, 'Apple Color Emoji'",
  8. "editor.fontSize": 14,
  9. "editor.lineHeight": 25,
  10. "editor.letterSpacing": 0.5,
  11. "files.trimTrailingWhitespace": true,
  12. "editor.fontWeight": "400",
  13. "prettier.eslintIntegration": true,
  14. "editor.cursorStyle": "line",
  15. "editor.cursorWidth": 5,
  16. "editor.cursorBlinking": "solid",
  17. "terminal.integrated.shell.osx": "zsh",
  18. "window.zoomLevel": 0,
  19. "javascript.updateImportsOnFileMove.enabled": "always",
  20. "terminal.integrated.fontSize": 12,
  21. "javascript.preferences.quoteStyle": "single",
  22. "prettier.singleQuote": true,
  23. "editor.formatOnType": true,
  24. "editor.quickSuggestions": {
  25. "strings": true
  26. },
  27. "editor.tabSize": 2,
  28. "editor.insertSpaces": true,
  29. "gitlens.advanced.messages": {
  30. "suppressShowKeyBindingsNotice": true
  31. },
  32. "prettier.semi": false,
  33. "editor.fontLigatures": true,
  34. "vetur.format.defaultFormatter.html": "js-beautify-html",
  35. "vetur.format.defaultFormatter.js": "none",
  36. "typescript.autoImportSuggestions.enabled": false,
  37. "javascript.validate.enable": false,
  38. "workbench.iconTheme": "material-icon-theme",
  39. "emmet.includeLanguages": {
  40. "vue-html": "html",
  41. "javascript": "javascriptreact"
  42. },
  43. "eslint.autoFixOnSave": true,
  44. "editor.foldingStrategy": "indentation",
  45. "git.autofetch": true,
  46. "editor.formatOnSave": true,
  47. "eslint.alwaysShowStatus": true,
  48. "eslint.packageManager": "yarn",
  49. "editor.minimap.enabled": true,
  50. "workbench.colorTheme": "Night Owl",
  51. "files.exclude": {
  52. "**/.git": true,
  53. "**/.svn": true,
  54. "**/.hg": true,
  55. "**/CVS": true,
  56. "**/.DS_Store": true,
  57. "**/tmp": true,
  58. "**/node_modules": true,
  59. "**/bower_components": true,
  60. "**/dist": true
  61. },
  62. "files.watcherExclude": {
  63. "**/.git/objects/**": true,
  64. "**/.git/subtree-cache/**": true,
  65. "**/node_modules/**": true,
  66. "**/tmp/**": true,
  67. "**/bower_components/**": true,
  68. "**/dist/**": true
  69. },
  70. "team.showWelcomeMessage": false
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement