-
Notifications
You must be signed in to change notification settings - Fork 2
/
VSCodeProject.code-workspace
63 lines (63 loc) · 1.97 KB
/
VSCodeProject.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
{
"folders": [
{
"name": "root",
"path": "."
}
],
"settings": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.associations": {
"*.css": "tailwindcss"
},
"[javascript][javascriptreact][typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json][jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css][scss][less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.useFlatConfig": true,
// "eslint.nodePath": ".yarn/sdks",
// "typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"prettier.prettierPath": "./node_modules/prettier",
"prettier.configPath": "./prettier.config.cjs", // this is a temp fix for VSCode
"files.exclude": {
"**/node_modules": true,
"**/.yarn": true,
".idea": true,
"hosting/dist": true
},
"search.exclude": {
"**/.pnp.*": true,
"**/.vscode": true,
"**/yarn.lock": true
},
"explorer.expandSingleFolderWorkspaces": true,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb"
},
"cSpell.words": ["creds", "Expt", "Firestore", "jspsych", "Stim"]
},
"extensions": {
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "bradlc.vscode-tailwindcss", "arcanis.vscode-zipfs", "yoavbls.pretty-ts-errors", "streetsidesoftware.code-spell-checker"]
}
}