nicegui.code-workspace 1.0 KB

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