-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvanilla-ts-dom.code-workspace
47 lines (47 loc) · 1.22 KB
/
vanilla-ts-dom.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"-files.exclude": {
"node_modules": true,
"example/out": true,
".gitignore": true,
"**/*.js.map": true,
"**/tsconfig*": true,
".npmrc": true,
"eslintrc.json": true,
"LICENSE": true,
"package-lock.json": true,
"README.md": true
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"files.associations": {
"config*.json": "jsonc",
"lang*.json": "jsonc",
"package.json": "json"
},
"eslint.options": {
"overrideConfigFile": "./eslintrc.json"
},
"-eslint.format.enable": true,
"eslint.validate": [
"typescript"
],
"eslint.alwaysShowStatus": true,
"eslint.nodePath": ".",
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
]
}
}