Add initial project structure and configuration files

This commit is contained in:
Jack.Le
2026-05-18 14:14:16 -07:00
commit b9adc7c0b8
41 changed files with 94365 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"qt-core.qtInstallationRoot": "${workspaceFolder}/.venv/lib/python3.11/site-packages/PySide6/Qt",
"qt-qml.qmlls.enabled": true,
"qt-qml.qmlls.customExePath": "${workspaceFolder}/.venv/lib/python3.11/site-packages/PySide6/qmlls",
"qt-qml.qmlls.additionalImportPaths": [
"${workspaceFolder}/.venv/lib/python3.11/site-packages/PySide6/Qt/qml"
],
"qt-qml.qmlls.useNoCMakeCalls": true
}