-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathacapela.code-workspace
121 lines (121 loc) · 2.24 KB
/
acapela.code-workspace
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"folders": [
{
"path": "./frontend"
},
{
"path": "./backend"
},
{
"path": "./config"
},
{
"path": "./db"
},
{
"path": "./docs"
},
{
"path": "./gql"
},
{
"path": "./infrastructure"
},
{
"path": "./scripts"
},
{
"path": "./shared"
},
{
"path": "./tooling"
},
{
"path": "./ui"
},
{
"path": "e2e"
},
{
"path": "desktop"
},
{
"path": "clientdb"
}
],
"settings": {
"files.associations": {
".env.local": "env",
".env.production": "env",
".env.sample": "env"
},
"editor.rulers": [
// Matching prettier breakline length config
120
],
"files.insertFinalNewline": true,
"search.exclude": {
"**/node_modules": true,
".next/**/*": true,
"**/.next/**/*": true,
// DB client is auto generated, huge file that could pollute search easily
"db/client/**/*": true,
".yarn/**/*": true
},
// Will use auto-imports @aca/package instead of ../../package if import is from different package
"typescript.preferences.importModuleSpecifier": "shortest",
"typescript.suggest.autoImports": true,
"typescript.tsdk": "node_modules/typescript/lib",
"spellright.documentTypes": ["markdown", "plaintext", "typescript"],
"colorInfo.languages": [
{
"selector": "css",
"colors": "css"
},
{
"selector": "sass",
"colors": "css"
},
{
"selector": "scss",
"colors": "css"
},
{
"selector": "less",
"colors": "css"
},
{
"selector": "typescript",
"colors": "css"
},
{
"selector": "typescriptreact",
"colors": "css"
}
],
"cSpell.words": [
"Debouncing",
"Hasura",
"Scrollable",
"Sonix",
"Unprocessable",
"Userback",
"acapela",
"autoLinks",
"displayer",
"gmail",
"godaddy",
"healthz",
"immer",
"nextauth",
"pino",
"prosemirror",
"proxied",
"semibold",
"sendgrid",
"sonix",
"spezia",
"timestamptz"
]
}
}