forked from microsoft/BotFramework-Composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
32 lines (32 loc) · 793 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
{
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.dialog": "json",
"*.botproj": "json",
"*.schema": "json"
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true
},
"eslint.packageManager": "yarn",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.workingDirectories": ["./Composer"],
"typescript.tsdk": "./Composer/node_modules/typescript/lib",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"json.schemas": [
{
"fileMatch": [".composer/settings.json"],
"url": "http://localhost:5000/api/extensions/settings/schema.json"
}
],
"json.schemaDownload.enable": true
}