-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy path.sublime-project
More file actions
43 lines (43 loc) · 984 Bytes
/
.sublime-project
File metadata and controls
43 lines (43 loc) · 984 Bytes
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
{
"folders": [
{
"path": ".",
"folder_exclude_patterns": [
"node_modules",
"vendor",
"storage/logs",
"storage/framework",
"bootstrap/cache",
"public/build"
],
"file_exclude_patterns": [
"*.log"
]
}
],
"settings": {
"LSP": {
"vue-language-server": {
"enabled": true,
"selector": "text.html.vue"
},
"tailwindcss-language-server": {
"enabled": true,
"selector": "text.html.vue, source.css, source.scss",
"settings": {
"tailwindCSS": {
"experimental": {
"classRegex": [
["class:\\s*?[\"'`]([^\"'`]*).*?[\"'`]", "[\"'`]([^\"'`]*)[\"'`]"],
["className:\\s*?[\"'`]([^\"'`]*).*?[\"'`]", "[\"'`]([^\"'`]*)[\"'`]"]
]
},
"includeLanguages": {
"vue": "html"
}
}
}
}
}
}
}