-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathrsc-workshop.code-workspace
42 lines (42 loc) · 1.02 KB
/
rsc-workshop.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
{
"folders": [
{
"path": ".",
},
],
"extensions": {
"recommendations": [
"rvest.vs-code-prettier-eslint",
"esbenp.prettier-vscode",
"dsznajder.es7-react-js-snippets",
"dbaeumer.vscode-eslint",
],
},
"settings": {
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
},
}