-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSupportBro.code-workspace
More file actions
53 lines (53 loc) · 1.18 KB
/
Copy pathSupportBro.code-workspace
File metadata and controls
53 lines (53 loc) · 1.18 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
{
"folders": [
{
"name": "🏠 Root",
"path": "."
},
{
"name": "🎨 Frontend",
"path": "support-frontend"
},
{
"name": "⚙️ Backend",
"path": "support-ticket-system"
}
],
"settings": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.exclude": {
"**/node_modules": true,
"**/build": true,
"**/dist": true
},
"search.exclude": {
"**/node_modules": true,
"**/build": true,
"**/dist": true,
"**/package-lock.json": true
},
"tailwindCSS.includeLanguages": {
"javascript": "javascript",
"html": "HTML"
},
"tailwindCSS.experimental.classRegex": [
["class[Nn]ame=\"([^\"]*)"]
]
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss",
"ms-vscode.vscode-typescript-next",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"mongodb.mongodb-vscode",
"formulahendry.auto-rename-tag",
"dsznajder.es7-react-js-snippets"
]
}
}