-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbokeh.code-workspace
100 lines (100 loc) · 2.86 KB
/
bokeh.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"folders": [
{
"name": "root",
"path": "../bokeh"
},
{
"name": "python",
"path": "../bokeh/src/bokeh/"
},
{
"name": "javascript",
"path": "../bokeh/bokehjs"
},
{
"name": "docs",
"path": "../bokeh/docs/bokeh"
},
{
"name": "examples",
"path": "../bokeh/examples"
},
{
"name": "tests",
"path": "../bokeh/tests"
},
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"davidanson.vscode-markdownlint",
"dotiful.dotfiles-syntax-highlighting",
"benspaulding.python-manifest-template",
"mechatroner.rainbow-csv"
]
},
"settings": {
"[json]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.tabSize": 2,
},
"[python]": {
"editor.tabSize": 4,
},
"[typescript]": {
"editor.tabSize": 2,
},
"eslint.debug": true,
"eslint.nodeEnv": "production",
"eslint.lintTask.enable": true,
"eslint.run": "onType",
"eslint.probe": [
"typescript"
],
"eslint.workingDirectories": [
"./bokehjs",
"./bokehjs/src/lib",
"./bokehjs/src/lib/api",
"./bokehjs/src/lib/client",
"./bokehjs/src/lib/core",
"./bokehjs/src/lib/document",
"./bokehjs/src/lib/embed",
"./bokehjs/src/lib/external",
"./bokehjs/src/lib/models",
"./bokehjs/src/lib/protocol",
],
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/__pycache__": true,
"**/.*cache/**": true,
"**/.git": true,
"**/.vscode": true,
"**/*.pyc": {
"when": "$(basename).py"
},
"**/build/**": true
},
"files.watcherExclude": {
"**/build/**": true,
"**/.*cache/**": true,
"**/node_modules/**": true
},
"search.exclude": {
"**/build/**": true,
"**/.*cache/**": true,
"**/node_modules/**": true
},
"typescript.tsdk": "bokeh/bokehjs/node_modules/typescript/lib",
"yaml.schemas": {
"file:///Users/bryan/.vscode/extensions/ms-python.python-2021.10.1365161279/schemas/conda-meta.json": "file:///Users/bryan/work/bokeh/conda/recipe/meta.yaml"
}
},
}