File size: 756 Bytes
ffe7549
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
    "python.linting.enabled": true,
    "python.linting.mypyEnabled": true,
    "python.pythonPath": "${env:PYTHON_VENV_LOC}",
    "python.testing.unittestEnabled": false,
    "python.testing.nosetestsEnabled": false,
    "python.testing.pytestEnabled": true,
    "python.testing.pytestArgs": [
        "tests"
    ],
    "editor.tabSize": 4,
    "[python]": {
        "editor.formatOnSave": true
    },
    "python.formatting.provider": "black",
    "files.exclude": {
        ".mypy_cache": true,
        ".pytest_cache": true,
        ".venv": true,
        "**/__pycache__": true
    },
    "files.watcherExclude": {
        ".venv/**": true,
        "**/__pycache__/**": true,
        ".mypy_cache/**": true,
        ".pytest_cache/**": true
    }
}