-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-gimp.code-workspace
More file actions
48 lines (48 loc) · 870 Bytes
/
mcp-gimp.code-workspace
File metadata and controls
48 lines (48 loc) · 870 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
40
41
42
43
44
45
46
47
48
{
"folders": [
{
"path": "."
},
{
"path": "./src/mcp-server"
},
{
"path": "./src/gimp-plugin"
},
{
"path": "./resources/examples"
},
{
"path": "./src/stubs-generator"
},
],
"settings": {
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.unusedImports": "explicit",
"source.organizeImports": "explicit"
}
},
"files.exclude": {
"./src/gimp-plugin": true,
"./src/mcp-server": true,
"./src/stubs-generator": true,
},
"files.associations": {
"*.env": "properties"
}
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",
"ms-azuretools.vscode-containers",
"ms-python.debugpy",
"ms-python.python",
"ms-python.vscode-pylance",
"docker.docker",
]
},
}