mypy-vscode icon indicating copy to clipboard operation
mypy-vscode copied to clipboard

Can the status file be made configurable?

Open juandiegopalomino opened this issue 8 months ago • 1 comments

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",
}

juandiegopalomino avatar Jun 06 '24 18:06 juandiegopalomino