Files
barker/.vscode/settings.json
Amritanshu 1b8ab2857f Mostly working with Product + Version and Sku + Version.
There will still be many errors. But this is working somewhat
2026-01-23 02:30:57 +00:00

26 lines
835 B
JSON

{
"python.defaultInterpreterPath": "/home/tanshu/.cache/pypoetry/virtualenvs/barker-3ndhMgBR-py3.14/bin/python",
"files.exclude": {
"**/__pycache__": true,
"**/.mypy_cache": true,
".idea": true,
"**/node_modules": true,
},
"search.exclude": {
"**/__pycache__": true,
"**/.mypy_cache": true,
".idea": true,
"**/node_modules": true,
"**/package-lock.json": true,
},
"makefile.configureOnOpen": false,
"python-envs.pythonProjects": [],
/* --- Pylance: keep IntelliSense, disable type checking --- */
"python.analysis.typeCheckingMode": "off",
// "python.analysis.diagnosticMode": "openFilesOnly",
/* --- mypy: source of truth for typing --- */
"python.linting.enabled": true,
"python.linting.mypyEnabled": true
}