-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathefp.code-workspace
More file actions
53 lines (53 loc) · 1.2 KB
/
efp.code-workspace
File metadata and controls
53 lines (53 loc) · 1.2 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": [
{
"path": "."
},
{
"path": "api"
},
{
"path": "app"
},
{
"path": "contracts-beta"
},
{
"path": "docs"
},
{
"path": "indexer"
},
{
"path": "indexer/efp-indexer"
}
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"git.confirmSync": false,
"files.associations": {
"biome.json": "jsonc",
"settings.json": "jsonc"
},
"database-client.telemetry.usesOnlineServices": false,
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"driver": "PostgreSQL",
"name": "efp-database",
"group": "efp",
"connectString": "postgresql://postgres:postgres@host.docker.internal:5432/efp?sslmode=disable"
}
],
"sql-formatter.dialect": "postgresql",
"sql-formatter.linesBetweenQueries": 3,
"sql-formatter.uppercase": true,
"[sql]": {
"editor.defaultFormatter": "lea21st.vscode-sql-formatter"
},
"rust-analyzer.linkedProjects": ["./indexer/efp-indexer/Cargo.toml"],
"editor.defaultFormatter": "biomejs.biome"
}
}