-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathretro.code-workspace
More file actions
38 lines (37 loc) · 983 Bytes
/
retro.code-workspace
File metadata and controls
38 lines (37 loc) · 983 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.pylint",
"pylint.importStrategy": "useBundled",
"autoDocstring.docstringFormat": "numpy",
"pythonIndent.trimLinesWithOnlyWhitespace": true,
"python.languageServer": "None",
"python.autoComplete.extraPaths": [],
// "python.linting.enabled": true,
// "python.linting.pylintPath": "pylint",
"python.formatting.provider": "yapf",
// "python.linting.pylintEnabled": true,
"python.analysis.extraPaths": [],
"files.watcherExclude": {
"**/.conda": true
},
"search.exclude": {
"**/.conda**": true,
"**/.venv": true
},
"notebook.formatOnCellExecution": false,
"notebook.formatOnSave.enabled": true,
"notebook.defaultFormatter": "eeyore.yapf",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
}
}
}