-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdsbin.code-workspace
More file actions
73 lines (73 loc) · 1.82 KB
/
Copy pathdsbin.code-workspace
File metadata and controls
73 lines (73 loc) · 1.82 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
{
"folders": [
{
"path": "."
},
{
"path": "../polykit"
}
],
"settings": {
"conventionalCommits.scopes": [
"pre-commit-config",
"update_changelog",
"workspace"
],
"files.exclude": {
"**/*.egg-info": true,
"**/*.pyi": false,
"**/*[0-9a-fA-F]{32}*": true,
"**/.cache": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": false,
"**/.idea": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.ruff_cache": true,
"**/.svn": false,
"**/.venv": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/CVS": false,
"**/dist": true,
"**/node_modules": true,
"**/Thumbs.db": true,
".cursor": true,
".cursorindexingignore": true,
".github": true,
".history": true,
".idea": true,
".pdoc": true,
".specstory": true,
"venv": true
},
"github.copilot.chat.codeGeneration.instructions": [
{
"file": "code-style.md"
}
],
"mypy-type-checker.args": [
"--config-file=mypy.ini"
],
"peacock.color": "#18636d",
"search.exclude": {
"completions/*.fish": true
},
"workbench.colorCustomizations": {
"sash.hoverBorder": "#218997",
"statusBar.background": "#18636d",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#218997",
"statusBarItem.remoteBackground": "#18636d",
"statusBarItem.remoteForeground": "#e7e7e7",
"editorGroup.border": "#218997",
"statusBar.border": "#18636d",
"statusBar.debuggingBackground": "#6d2218",
"statusBar.debuggingBorder": "#6d2218",
"statusBar.debuggingForeground": "#e7e7e7",
"tab.activeBorder": "#218997"
},
"specstory.cloudSync.enabled": "never"
}
}