-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsds-code.code-workspace
More file actions
101 lines (101 loc) · 2.46 KB
/
sds-code.code-workspace
File metadata and controls
101 lines (101 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"extensions": {
"recommendations": [
"batisteo.vscode-django",
"charliermarsh.ruff",
"codeandstuff.package-json-upgrade",
"DavidAnson.vscode-markdownlint",
"ms-python.python",
"redhat.vscode-yaml",
"richie5um2.vscode-sort-json",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"timonwong.shellcheck",
"usernamehw.errorlens",
"yzhang.markdown-all-in-one"
]
},
"folders": [
{
"name": "sds-code-root",
"path": "."
},
{
"name": "sds-gateway",
"path": "./gateway"
},
{
"name": "sds-sdk",
"path": "./sdk"
},
{
"name": "network",
"path": "./network"
},
{
"name": "jupyter",
"path": "./jupyter"
},
],
"settings": {
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true
},
"[yaml]": {
"editor.autoIndent": "keep",
"editor.defaultFormatter": "redhat.vscode-yaml",
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"editor.indentSize": 4,
"evenBetterToml.formatter.alignComments": true,
"evenBetterToml.formatter.alignEntries": true,
"evenBetterToml.formatter.allowedBlankLines": 2,
"evenBetterToml.formatter.arrayTrailingComma": true,
"evenBetterToml.formatter.columnWidth": 119,
"evenBetterToml.formatter.indentEntries": true,
"evenBetterToml.formatter.indentString": " ",
"evenBetterToml.formatter.indentTables": true,
"evenBetterToml.formatter.inlineTableExpand": true,
"evenBetterToml.formatter.reorderArrays": false,
"evenBetterToml.formatter.reorderKeys": true,
"evenBetterToml.formatter.trailingNewline": true,
"evenBetterToml.schema.cache.diskExpiration": 15,
"evenBetterToml.schema.cache.memoryExpiration": 10,
"evenBetterToml.schema.links": true,
"pylint.enabled": false,
"python.analysis.autoFormatStrings": true,
"python.analysis.enablePytestSupport": true,
"python.analysis.ignore": [
"**/gateway/**"
],
"python.analysis.importFormat": "absolute",
"python.analysis.indexing": true,
"python.analysis.typeCheckingMode": "standard",
"python.languageServer": "Pylance",
"ruff.fixAll": true
},
"tasks": {
"tasks": [
{
"args": [],
"command": "echo hello",
"group": "build",
"label": "echo hello",
"presentation": {
"reveal": "always"
},
"problemMatcher": [
"$tsc"
],
"type": "shell"
}
],
"version": "2.0.0"
}
}
// "ruff.configuration": null