forked from seanap/auto-m4b
-
Notifications
You must be signed in to change notification settings - Fork 2
/
auto-m4b.code-workspace
61 lines (61 loc) · 2.04 KB
/
auto-m4b.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
57
58
59
60
61
{
"folders": [
{
"path": "."
}
],
"settings": {
"[python]": {
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.formatOnSaveMode": "file",
"exitor.formatOnType": false,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
"source.unusedImports": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter"
},
"editor.insertSpaces": true,
"editor.tabSize": 4,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.terminal.activateEnvironment": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportUserSymbols": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": false,
"python.autoComplete.addBrackets": false,
"python.analysis.indexing": true,
"python.analysis.packageIndexDepths": [
{
"name": "",
"depth": 6,
"includeAllSymbols": true
}
],
"python.analysis.autoSearchPaths": true,
"python.languageServer": "Pylance",
"python.formatting.provider": "ruff",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#7078cc",
"activityBar.background": "#7078cc",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#e6b9bc",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#7078cc",
"statusBar.background": "#4a55bf",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#7078cc",
"statusBarItem.remoteBackground": "#4a55bf",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#4a55bf",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#4a55bf99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#4a55bf"
}
}