nicegui.code-workspace 952 B

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