Guest User

Untitled

a guest
May 20th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. // Place your settings in this file to overwrite the default settings
  2. {
  3. // Configure glob patterns for excluding files and folders.
  4. "files.exclude": {
  5. "**/.git": true,
  6. "**/.svn": true,
  7. "**/.DS_Store": true,
  8. "**/*.js": { "when": "$(basename).ts"},
  9. "app/**/*.js.map": true
  10. },
  11.  
  12. "files.associations": {
  13. "*.vue": "vue"
  14. },
  15.  
  16. "editor.tabSize": 2,
  17. "editor.renderControlCharacters": false,
  18.  
  19. "eslint.validate": [
  20. "javascript",
  21. "javascriptreact",
  22. "html",
  23. "vue"
  24. ],
  25. "[cpp]": {
  26. "editor.quickSuggestions": false
  27. },
  28. "[c]": {
  29. "editor.quickSuggestions": false
  30. },
  31. "emmet.syntaxProfiles": {
  32. "vue-html": "html",
  33. "vue": "html"
  34. },
  35. "vetur.validation.template": false,
  36. "window.zoomLevel": 0
  37. }
Add Comment
Please, Sign In to add comment