-
-
Notifications
You must be signed in to change notification settings - Fork 732
/
react-day-picker.code-workspace
55 lines (55 loc) · 1.25 KB
/
react-day-picker.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
{
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"orta.vscode-jest",
"andys8.jest-snippets",
"esbenp.prettier-vscode",
"mike-co.import-sorter",
"streetsidesoftware.code-spell-checker",
"stkb.rewrap"
]
},
"folders": [
{
"name": "react-day-picker",
"path": "."
},
{
"name": "website",
"path": "website"
},
{
"path": "examples-app"
},
{
"path": "performance-tests"
}
],
"settings": {
"cSpell.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 2,
"npm.packageManager": "pnpm",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"search.exclude": {
"**/node_modules": true,
"**/versioned_docs": true
},
"jest.runMode": "on-demand",
"git.showProgress": true,
"scm.diffDecorationsGutterVisibility": "hover",
"scm.diffDecorationsGutterPattern": {
"modified": false
},
"scm.diffDecorationsGutterWidth": 1,
"scm.diffDecorations": "none",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}