1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "folders": [
- {
- "path": "."
- }
- ],
- "settings": {
- "python.analysis.supportRestructuredText": true,
- "ruff.enable": true,
- "files.associations": {
- "*.html": "jinja-html"
- }
- },
- "extensions": {
- "recommendations": [
- "charliermarsh.ruff",
- "cschleiden.vscode-github-actions",
- "esbenp.prettier-vscode",
- "littlefoxteam.vscode-python-test-adapter",
- "ms-python.autopep8",
- "ms-python.mypy-type-checker",
- "ms-python.pylint",
- "ms-python.python",
- "ms-python.vscode-pylance",
- "samuelcolvin.jinjahtml",
- "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
- }
- }
- ]
- }
- }
|