-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithub.code-workspace
More file actions
109 lines (109 loc) · 2.6 KB
/
github.code-workspace
File metadata and controls
109 lines (109 loc) · 2.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"folders": [
{
"name": ".github",
"path": "."
}
],
"settings": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.trimAutoWhitespace": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"editor.wordWrap": "on",
"editor.rulers": [80, 120],
"editor.minimap.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"workbench.editor.enablePreview": false,
"workbench.editor.revealIfOpen": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"markdown.preview.breaks": true,
"markdown.preview.linkify": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"terminal.integrated.defaultProfile.osx": "zsh",
"chat.mcp.access": "all",
"github.copilot.chat.virtualTools.threshold": 128,
"github.copilot.enable": {
"*": true,
"php": true,
"javascript": true,
"css": true,
"scss": true,
"json": true,
"yaml": true,
"python": false,
"plaintext": false,
"markdown": true
},
"chat.modeFilesLocations": {
"**/.github/chatmodes": true,
"chatmodes": true
},
"chat.promptFilesLocations": {
"**/.github/prompts": true,
"prompts": true
},
"chat.instructionsFilesLocations": {
"**/.github/instructions": true,
"instructions": true
},
"files.associations": {
"*.chatmode.md": "markdown",
"*.instructions.md": "markdown",
"*.agent.md": "markdown",
"*.prompt.md": "markdown",
"*inline-documentation.instructions.md": "markdown",
"*.theme.json": "jsonc",
"theme.json": "jsonc"
},
"emmet.includeLanguages": {
"php": "html"
},
"php.suggest.basic": false
},
"extensions": {
"recommendations": [
"ms-vscode.vscode-github-issue-notebooks",
"github.vscode-github-actions",
"github.copilot",
"github.copilot-chat",
"davidanson.vscode-markdownlint",
"yzhang.markdown-all-in-one",
"redhat.vscode-yaml",
"ms-vscode.vscode-json",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig"
]
},
"tasks": {
"version": "2.0.0",
"tasks": []
},
"launch": {
"version": "0.2.0",
"configurations": []
}
}