diff --git a/.vscode/settings.json b/.vscode/settings.json index c7d8ca4..2858a5f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,4 @@ { - "python.analysis.extraPaths": [ - "gclib", - ], "qtForPython.uic.options": [ "-o", "${resourceDirname}${pathSeparator}uic${pathSeparator}ui_${resourceBasenameNoExtension}.py", ], @@ -12,11 +9,6 @@ "search.exclude": { "PyJ3DUltra": true, }, - "python.analysis.exclude": [ - "PyJ3DUltra", - "build", - "wip", - ], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, "python.testing.pytestArgs": [ @@ -24,4 +16,7 @@ "--cov", "--cov-report=html", ], + "files.associations": { + "*.spec": "python", + }, } \ No newline at end of file diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..208b0ec --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,11 @@ +{ + "typeCheckingMode": "off", + "extraPaths": [ + "gclib" + ], + "exclude": [ + "PyJ3DUltra", + "build", + "wip", + ], +} \ No newline at end of file