mypy-vscode
mypy-vscode copied to clipboard
Can the status file be made configurable?
We have another system that might be attempting to run dmypy, but for the exact same project. What would really help not having duplicate dmypys is if we can specify a status file and then this extension uses the "shared" dmypy instance.
Example in settings.json
{
"mypy.dmypyExecutable": "${workspaceFolder}/.venv/bin/dmypy",
"mypy.configFile": "/path/to/pyproject.toml",
"mypy.targets": [
"app"
],
"mypy.statusFile": "/path/to/.dmypy.json",
}