forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal-settings.json
More file actions
37 lines (37 loc) · 966 Bytes
/
global-settings.json
File metadata and controls
37 lines (37 loc) · 966 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
{
// This is set from an environment variable
"experimentalFeatures": {
"batchChangesExecution": true,
"showRepogroupHomepage": true,
"showMultilineSearchConsole": true,
"codeMonitoring": true,
"codeInsights": true,
"codeIntelRepositoryBadge": { "enabled": true },
"coolCodeIntel": true,
"enableLazyBlobSyntaxHighlighting": true,
"enableLazyFileResultSyntaxHighlighting": true,
"enableSearchFilePrefetch": true,
"enableSidebarFilePrefetch": true
},
"codeIntel.referencesPanel": "tree-view",
"insights": [
{
"title": "fmt usage",
"description": "fmt.Errorf/fmt.Printf usage",
"series": [
{
"label": "fmt.Errorf",
"search": "errorf"
},
{
"label": "printf",
"search": "fmt.Printf"
}
],
"id": "1"
}
],
"search.repositoryGroups": {
"test": ["github.com/gorilla/mux", "github.com/gorilla/pat"]
}
}