nicegui.code-workspace 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "folders": [
  3. {
  4. "path": "."
  5. }
  6. ],
  7. "settings": {},
  8. "extensions": {
  9. "recommendations": [
  10. "ms-python.vscode-pylance",
  11. "ms-python.python",
  12. "himanoa.python-autopep8",
  13. "esbenp.prettier-vscode",
  14. "littlefoxteam.vscode-python-test-adapter",
  15. "cschleiden.vscode-github-actions",
  16. "samuelcolvin.jinjahtml"
  17. ]
  18. },
  19. "launch": {
  20. "version": "0.2.0",
  21. "configurations": [
  22. {
  23. "name": "current file",
  24. "type": "python",
  25. "request": "launch",
  26. "program": "${file}",
  27. "console": "integratedTerminal"
  28. },
  29. {
  30. "name": "Dockerized NiceGUI",
  31. "type": "python",
  32. "request": "attach",
  33. "connect": {
  34. "port": 5678
  35. }
  36. }
  37. ]
  38. },
  39. "files.associations": {
  40. "*.html": "jinja-html"
  41. }
  42. }