-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.code-workspace
More file actions
46 lines (46 loc) · 1.19 KB
/
project.code-workspace
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"folders": [
{
"name": "root",
"path": ".",
},
{
"name": "supabase-payload",
"path": "apps/supabase-payload",
},
{
"name": "payload-supabase-rls",
"path": "packages/payload-supabase-rls",
},
],
"settings": {
"editor.tabSize": 2,
"editor.detectIndentation": false,
"search.exclude": {
"package-lock.json": true,
},
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.format.enable": true,
"editor.codeActionsOnSave": [
"source.addMissingImports",
// "source.fixAll.eslint",
"source.fixAll",
],
"[javascript][javascriptreact][typescript][typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
},
"[json][jsonc]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
// "[css][scss]": {
// "editor.formatOnSave": false,
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
"css.validate": false,
"scss.validate": false,
"testing.automaticallyOpenPeekView": "never",
"typescript.tsdk": "root/node_modules/typescript/lib",
},
}