Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. // Place your settings in this file to overwrite the default settings
  2. {
  3. "files.autoSave": "afterDelay",
  4. "editor.fontSize": 14,
  5. "typescript.check.tscVersion": false,
  6. "editor.tabSize": 2,
  7. "editor.insertSpaces": true,
  8. // HTML, JavaScript, Vue
  9. "files.associations": {
  10. "*.vue" : "vue"
  11. },
  12. // cssのemmetをvueでできるように
  13. "emmet.syntaxProfiles": {
  14. "vue" : "css"
  15. },
  16. "eslint.enable": true,
  17. "eslint.options": {
  18. "editor.tabSize": 2,
  19. "eslint.options": {
  20. "extensions": [".js", ".vue"]
  21. }
  22. },
  23. "eslint.validate": [
  24. "javascript",
  25. "javascriptreact",
  26. "html",
  27. "vue"
  28. ]
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement