forked from rstackjs/rstack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
30 lines (30 loc) · 821 Bytes
/
Copy pathsettings.json
File metadata and controls
30 lines (30 loc) · 821 Bytes
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
{
"search.useIgnoreFiles": true,
"search.exclude": {
"**/.git": true,
"**/dist": true,
"**/dist-*": true,
"**/coverage": true,
"**/doc_build": true,
"**/node_modules": true,
"**/tsconfig.tsbuildinfo": true
},
"files.exclude": {
"**/.DS_Store": true
},
"mdx.validate.validateFileLinks": "ignore",
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Temporary workaround until we switch to the Rstack VS Code extension.
"prettier.printWidth": 100,
"prettier.singleQuote": true,
"js/ts.tsdk.path": "node_modules/typescript/lib",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[mdx]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}