-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoddle.code-workspace
More file actions
49 lines (49 loc) · 1.39 KB
/
doddle.code-workspace
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
48
49
{
"folders": [
{
"path": ".",
"name": "doddle"
}
],
"settings": {
"eslint.enable": true,
"eslint.run": "onSave",
"eslint.lintTask.enable": true,
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"jest.disabledWorkspaceFolders": ["root"],
"files.exclude": {
"tutorials": true,
"packages/parjs": true,
"packages/char-info": true,
"packages/debug": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.nyc_output": true,
"**/coverage": true,
"**/dist-spec": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.aux": true,
"**/*.bbl": true,
"**/*.fdb_latexmk": true,
"**/*.fls": true,
"**/*.out": true,
"**/*.synctex.gz": true,
"**/.idea": true,
"**/.mypy_cache": true,
"**/__pycache__": true,
"**/dist": true,
"**/dist_aux": true,
".nyc_output": true,
"coverage": true,
"docs": true
},
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true,
"**/*.code-search": true
}
}
}