-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdigi-productive.code-workspace
More file actions
55 lines (51 loc) · 1.3 KB
/
Copy pathdigi-productive.code-workspace
File metadata and controls
55 lines (51 loc) · 1.3 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
{
"folders": [
{
"name": "Digi Productive Site",
"path": "."
}
],
"settings": {
// 🔧 Format on save
"editor.formatOnSave": true,
// 🎨 Prettier settings directly embedded
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.printWidth": 100,
"prettier.tabWidth": 2,
"prettier.trailingComma": "none",
// 🌐 HTML and TailwindCSS support
"html.autoClosingTags": true,
"emmet.includeLanguages": {
"html": "html",
"javascript": "html",
"typescript": "javascript"
},
"tailwindCSS.includeLanguages": {
"plaintext": "html",
"javascript": "html",
"typescript": "html"
},
"tailwindCSS.experimental.classRegex": [
"class\\s*=\\s*\"([^\"]*)\"",
"className\\s*=\\s*\"([^\"]*)\""
],
// 🧹 Editor cleanliness
"files.trimTrailingWhitespace": true,
// 📁 Optional search exclusion
"search.exclude": {
"**/node_modules": true
}
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss",
"formulahendry.auto-close-tag",
"ritwickdey.liveserver",
"dbaeumer.vscode-eslint",
"ms-vscode.vscode-typescript-tslint-plugin"
]
}
}