12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "folders": [
- {
- "path": "."
- }
- ],
- "settings": {
- "files.associations": {
- "*.html": "jinja-html"
- }
- },
- "extensions": {
- "recommendations": [
- "ms-python.vscode-pylance",
- "ms-python.python",
- "himanoa.python-autopep8",
- "esbenp.prettier-vscode",
- "littlefoxteam.vscode-python-test-adapter",
- "cschleiden.vscode-github-actions",
- "samuelcolvin.jinjahtml",
- "ms-python.isort",
- "Vue.volar"
- ]
- },
- "launch": {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "current file",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "console": "integratedTerminal"
- },
- {
- "name": "Dockerized NiceGUI",
- "type": "python",
- "request": "attach",
- "connect": {
- "port": 5678
- }
- }
- ]
- }
- }
|