-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpython.code-workspace
More file actions
53 lines (53 loc) · 1.49 KB
/
python.code-workspace
File metadata and controls
53 lines (53 loc) · 1.49 KB
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
53
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"bibhasdn.unique-lines",
"charliermarsh.ruff",
"esbenp.prettier-vscode",
"hashicorp.terraform",
"mhutchie.git-graph",
"ms-python.mypy-type-checker",
"ms-python.vscode-pylance",
"ms-python.python",
"nefrob.vscode-just-syntax",
"tamasfe.even-better-toml"
]
},
"settings": {
"files.exclude": {
},
"files.watcherExclude": {
"**/__pycache__/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.hg/store/**": true,
"**/.ipynb_checkpoints/**": true,
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.venv/**": true,
"**/*.egg-info/**": true,
},
"[python][typescript][svelte]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[typescript][svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.envFile": ".disable-loading-env-because-pollutes-shell-session",
"mypy-type-checker.importStrategy": "fromEnvironment",
"mypy-type-checker.reportingScope": "workspace",
"mypy-type-checker.preferDaemon": true
}
}