-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht8s.code-workspace
46 lines (45 loc) · 1.28 KB
/
t8s.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"codesnap.backgroundColor": "#FFFFFF",
"codesnap.transparentBackground": false,
"codesnap.containerPadding": "2px",
"codesnap.showWindowControls": true,
"codesnap.roundedCorners": true,
"codesnap.shutterAction": "save",
"editor.fontFamily": "Fira Code, Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontWeight": "normal",
"editor.formatOnSave": false,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true
},
"ruff.configPath": "pyproject.toml",
"ruff.args": [
"--config=pyproject.toml"
],
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.cwd": "${workspaceFolder}",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"notebook.editorOptionsCustomizations": {
"editor.autoClosingBrackets": "languageDefined"
},
"autoDocstring.quoteStyle": "\"\"\"",
"autoDocstring.docstringFormat": "docblockr",
"jupyter.interactiveWindow.textEditor.executeSelection": true,
}
}