1
0

nicegui.code-workspace 980 B

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