-
Notifications
You must be signed in to change notification settings - Fork 0
/
thk.code-workspace
39 lines (39 loc) · 1023 Bytes
/
thk.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
{
"folders": [
{
"name": "Root",
"path": "."
}
],
"settings": {
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"extensions.ignoreRecommendations": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.tsserver.log": "verbose",
"javascript.preferences.quoteStyle": "single"
},
"extensions": {
"recommendations": [
"ms-vscode.vscode-typescript-tslint-plugin",
]
}
}