-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Rocket.Chat.sublime-project
55 lines (54 loc) · 1.07 KB
/
Rocket.Chat.sublime-project
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": "Monorepo Root",
"path": ".",
"folder_exclude_patterns": [
"//apps/meteor",
"//packages",
"//ee/apps",
"//ee/packages"
],
},
{
"name": "Rocket.Chat",
"path": "./apps/meteor",
},
{
"name": "Packages",
"path": "./packages",
},
{
"name": "Enterprise Apps",
"path": "./ee/apps",
},
{
"name": "Enterprise Packages",
"path": "./ee/packages",
}
],
"settings": {
"LSP": {
"LSP-typescript": {
"enabled": true,
"disabled_capabilities": {
// Uncomment the line below to load auto complete suggestions from sublime's index instead of typescript.
// The index is much faster, but doesn't filter out results based on the current context.
// "completionProvider": true,
},
},
"LSP-eslint": {
"settings": {
// If node path is not automatically detected, you can specify it here (use the global eslint settings if you have a global node)
// "nodePath": null
"workingDirectories": [
{
"mode": "auto",
}
],
},
},
},
},
}