-
Notifications
You must be signed in to change notification settings - Fork 1
/
cally.code-workspace
52 lines (52 loc) · 1.2 KB
/
cally.code-workspace
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
44
45
46
47
48
49
50
51
52
{
"folders": [
{
"path": "."
}
],
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder:cally}/venv/bin/python",
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/.ruff_cache": true,
"**/*egg*": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/.ruff_cache": true,
"**/build": true,
"**/_build": true,
"**/dist": true,
"**/*egg*": true,
"**/venv": true
},
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"black-formatter.args": ["--skip-string-normalization"],
"isort.args": ["--profile", "black"],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.mypy-type-checker",
"ms-python.python",
"redhat.vscode-yaml",
]
}
}