-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsettings.json
35 lines (35 loc) · 873 Bytes
/
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
{
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"files.exclude": {
"*.vsix": true,
"**/*.lock": true,
"**/node_modules/": true,
"dist/": true,
"util/": true,
"common/out": true,
"webview/build/": true,
".yarn/": true,
".yarnrc.yml": true,
".pnp.*": true,
"LICENSE.txt": true,
"**/.*ignore": true,
"**/.gitattributes": true,
"**/.eslintcache": true,
"**/webpack.config.js": true,
"webpack.plugin.js": true,
"**/tslint.json": true,
"**/tsconfig.json": true
},
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
},
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.preferences.quoteStyle": "single",
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
"markdownlint.config": {
"no-duplicate-header": {
"allow_different_nesting": true
}
}
}