settings.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "[json]": {
  3. "editor.tabSize": 4,
  4. "editor.insertSpaces": true
  5. },
  6. "[jsonc]": {
  7. "editor.tabSize": 4,
  8. "editor.insertSpaces": true
  9. },
  10. "[typescript]": {
  11. "editor.defaultFormatter": "vscode.typescript-language-features"
  12. },
  13. "[typescriptreact]": {
  14. "editor.defaultFormatter": "vscode.typescript-language-features"
  15. },
  16. "[javascript]": {
  17. "editor.defaultFormatter": "vscode.typescript-language-features"
  18. },
  19. "[javascriptreact]": {
  20. "editor.defaultFormatter": "vscode.typescript-language-features"
  21. },
  22. "files.trimTrailingWhitespace": true,
  23. "terminal.integrated.profiles": {
  24. "PowerShell (Admin)": {
  25. "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  26. "args": ["-NoExit", "-Command", "Start-Process powershell -Verb RunAs"]
  27. }
  28. },
  29. "terminal.integrated.defaultProfile.windows": "PowerShell (Admin)",
  30. "editor.tabSize": 4,
  31. "editor.insertSpaces": true,
  32. "editor.formatOnSave": false,
  33. "scss.lint.unknownAtRules": "ignore",
  34. "color-highlight.markerType": "dot-before",
  35. "color-highlight.languages": [
  36. "css",
  37. "scss",
  38. "sass",
  39. "less",
  40. "typescript",
  41. "typescriptreact"
  42. ]
  43. }