summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 9df63e5f748d7e866539bc1124a45701c914b117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "files.exclude": {
        "**/.git": true,
        "**/__pycache__": true,
        "**/.mypy_cache": true,
        "**/.pytest_cache": true,
        "**/.nox": true
    },
    "python.formatting.provider": "none",
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
        "source.organizeImports": true
    },
    "[python]": {
        "editor.defaultFormatter": "ms-python.black-formatter"
    },
    "isort.args": ["--profile", "black"],
    "python.testing.pytestArgs": ["tests"],
    "python.testing.unittestEnabled": false,
    "python.testing.pytestEnabled": true,
    "python.analysis.extraPaths": ["packages/python", "tests/python/common"],
    "rust-analyzer.linkedProjects": ["packages/rust/lsprotocol/Cargo.toml"]
}