-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.json
More file actions
39 lines (39 loc) · 989 Bytes
/
settings.json
File metadata and controls
39 lines (39 loc) · 989 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
{
"files.exclude": {
"env": true,
"**/__pycache__": true,
".eggs": true,
"**/*.egg-info": true,
".coverage": true,
".mypy_cache": true,
".pytest_cache": true,
".ruff_cache": true,
".tox": true
},
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.insertFinalNewline": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [88],
"editor.wordWrap": "on",
"editor.wordWrapColumn": 88
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"python.envFile": "${workspaceFolder}/.vscode/env",
"python.testing.pytestEnabled": true
}