-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.json
51 lines (51 loc) · 1.54 KB
/
settings.json
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
{
"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
},
"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"]
}