-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathsysreptor.code-workspace
56 lines (56 loc) · 1.32 KB
/
sysreptor.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
46
47
48
49
50
51
52
53
54
55
56
{
"folders": [
{
"name": "ROOT",
"path": ".."
},
{
"name": "api",
"path": "../api"
},
{
"name": "frontend",
"path": "../packages/frontend"
},
{
"name": "nuxt-base-layer",
"path": "../packages/nuxt-base-layer"
},
{
"name": "markdown",
"path": "../packages/markdown"
},
{
"name": "plugins",
"path": "../plugins"
},
{
"name": "docs",
"path": "../docs"
}
],
"settings": {
"files.autoSave": "afterDelay",
"editor.tabSize": 2,
"[python]": {
"editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
},
"eslint.format.enable": true,
"python.analysis.autoFormatStrings": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"charliermarsh.ruff",
"vue.volar",
"ms-azuretools.vscode-docker",
"dbaeumer.vscode-eslint",
"syler.sass-indented",
"gruntfuggly.todo-tree"
]
}
}