Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. {
  2. "editor.fontFamily": "Hack",
  3. "workbench.colorTheme": "Material Theme High Contrast",
  4. "workbench.iconTheme": "eq-material-theme-icons",
  5. "editor.fontSize": 14,
  6. "workbench.editor.showTabs": true,
  7. "window.zoomLevel": 0,
  8. "javascript.updateImportsOnFileMove.enabled": "always",
  9. // Prettier
  10. "prettier.eslintIntegration": true,
  11. "prettier.singleQuote": true,
  12. "prettier.tabWidth": 4,
  13. "prettier.trailingComma": "es5",
  14. // Format file on save. A formatter must be availabe, the file
  15. // must not be auto-saved, and editor must not be shutting down.
  16. "editor.formatOnSave": true,
  17. // Enable/disable default JavaScript formatter(for prettier)
  18. "javascript.format.enable": false,
  19. // Enable per-language
  20. "[json]": {
  21. "editor.formatOnSave": true
  22. },
  23.  
  24. "editor.parameterHints.enabled": false,
  25. "editor.renderControlCharacters": true,
  26. "editor.renderWhitespace": "boundary",
  27.  
  28. // Files
  29. "files.insertFinalNewline": true,
  30. "files.associations": {
  31. "*.json": "jsonc"
  32. },
  33. "materialTheme.autoApplyIcons": false,
  34. "prettier.arrowParens": "always",
  35. "spellright.notificationClass": "information",
  36. "workbench.startupEditor": "newUntitledFile"
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement