Q3学习计划
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.4 KiB

3 years ago
3 years ago
3 years ago
3 years ago
  1. {
  2. // vscode-icons
  3. "workbench.iconTheme": "vscode-icons",
  4. //
  5. "editor.formatOnSave": true,
  6. //
  7. "[json]": {
  8. "editor.defaultFormatter": "esbenp.prettier-vscode"
  9. },
  10. //
  11. "explorer.compactFolders": false,
  12. // vue prettier
  13. "[vue]": {
  14. "editor.defaultFormatter": "esbenp.prettier-vscode"
  15. },
  16. // html prettier
  17. "[html]": {
  18. "editor.defaultFormatter": "esbenp.prettier-vscode"
  19. },
  20. // ts prettier
  21. "[typescript]": {
  22. "editor.defaultFormatter": "esbenp.prettier-vscode"
  23. },
  24. //
  25. "files.associations": {
  26. "pages.json": "jsonc", // pages.json
  27. "manifest.json": "jsonc" // manifest.json
  28. },
  29. // uniapp vue3
  30. "create-uniapp-view.template": "vue3",
  31. // uniapp
  32. "create-uniapp-view.name": "与文件夹同名",
  33. // uniapp 使 scss
  34. "create-uniapp-view.style": "scss",
  35. // uniapp scoped
  36. "create-uniapp-view.scoped": false
  37. }