Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. {
  2. "workbench.colorTheme": "Cobalt2",
  3. "editor.tabSize": 2,
  4. "editor.detectIndentation": false,
  5. "editor.tabCompletion": true,
  6. "emmet.triggerExpansionOnTab": false,
  7. "editor.fontFamily": "Operator Mono",
  8. "editor.lineHeight": 25,
  9. "editor.fontLigatures": true,
  10. "eslint.autoFixOnSave": true,
  11. "editor.letterSpacing": 0.5,
  12. "files.trimTrailingWhitespace": true,
  13. "editor.fontWeight": "400",
  14. "prettier.singleQuote": true,
  15. "html.format.wrapAttributes": "force",
  16. "prettier.trailingComma": "none",
  17. "vetur.format.defaultFormatterOptions": {
  18. "js-beautify-html": {
  19. "wrap_attributes": "auto"
  20. }
  21. },
  22. "editor.renderWhitespace": "all",
  23. "vetur.format.defaultFormatter.html": "js-beautify-html",
  24. // Run the linter on save (onSave) or on type (onType)
  25. "eslint.run": "onSave",
  26. "[vue]": {},
  27. "prettier.disableLanguages": [
  28. "vue"
  29. ],
  30. "editor.formatOnType": true,
  31. "vetur.format.defaultFormatter.js": "prettier",
  32. "editor.formatOnSave": true,
  33. "prettier.semi": false,
  34. "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
  35. // Defines space handling before function argument parentheses. Requires TypeScript >= 2.1.5.
  36. "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  37. "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
  38. "prettier.arrowParens": "avoid",
  39. "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
  40. "prettier.bracketSpacing": true,
  41. "files.autoSave": "off",
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement