-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpunity.code-workspace
More file actions
43 lines (43 loc) · 935 Bytes
/
impunity.code-workspace
File metadata and controls
43 lines (43 loc) · 935 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"folders": [
{
"path": "."
}
],
"settings": {
// Linting + type checking
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.linting.mypyEnabled": true,
"python.linting.enabled": true,
// Formatting
"editor.formatOnSave": true,
"python.formatting.provider": "black",
// Testing
"python.testing.unittestEnabled": true,
"python.testing.unittestArgs": [
"-s",
".",
"-p",
"tests/test*.py"
],
"python.testing.pytestEnabled": false,
// File list
"files.exclude": {
"dist/": true,
"build:": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"valentjn.vscode-ltex",
"charliermarsh.ruff"
]
}
}