-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdf-cli.code-workspace
More file actions
45 lines (45 loc) · 1.27 KB
/
df-cli.code-workspace
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"folders": [
{"path": "."},
],
"settings": {
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
},
},
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"diffEditor.ignoreTrimWhitespace": false
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",
"ms-python.python",
"hbenl.vscode-test-explorer",
"unifiedjs.vscode-mdx",
"xyc.vscode-mdx-preview",
"ms-vscode.test-adapter-converter",
"ms-python.vscode-python-envs",
"ms-python.debugpy",
"ms-python.vscode-pylance",
"ms-azuretools.vscode-containers",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-ssh",
"ms-vscode-remote.remote-ssh-edit",
"ms-vscode.remote-explorer",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-british-english",
"littlefoxteam.vscode-python-test-adapter",
"kaih2o.python-resource-monitor",
"almenon.arepl",
"mdw.vscode-todo-plus-plus"
]
}
}