Skip to content

Commit 88b5477

Browse files
committed
add a vscode workspace for the main repo
1 parent 92f4b66 commit 88b5477

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed

bokeh.code-workspace

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "root",
5+
"path": "../bokeh"
6+
},
7+
{
8+
"name": "python",
9+
"path": "../bokeh/src/bokeh/"
10+
},
11+
{
12+
"name": "javascript",
13+
"path": "../bokeh/bokehjs"
14+
},
15+
{
16+
"name": "docs",
17+
"path": "../bokeh/docs/bokeh"
18+
},
19+
{
20+
"name": "examples",
21+
"path": "../bokeh/examples"
22+
},
23+
{
24+
"name": "tests",
25+
"path": "../bokeh/tests"
26+
},
27+
],
28+
"extensions": {
29+
"recommendations": [
30+
"dbaeumer.vscode-eslint",
31+
"davidanson.vscode-markdownlint",
32+
"dotiful.dotfiles-syntax-highlighting",
33+
"benspaulding.python-manifest-template",
34+
"mechatroner.rainbow-csv"
35+
]
36+
},
37+
"settings": {
38+
"[json]": {
39+
"editor.tabSize": 2,
40+
"editor.formatOnSave": true,
41+
"editor.formatOnSaveMode": "file",
42+
"editor.defaultFormatter": "vscode.json-language-features"
43+
},
44+
"[javascript]": {
45+
"editor.tabSize": 2,
46+
},
47+
"[python]": {
48+
"editor.tabSize": 4,
49+
},
50+
"[typescript]": {
51+
"editor.tabSize": 2,
52+
},
53+
"eslint.debug": true,
54+
"eslint.nodeEnv": "production",
55+
"eslint.lintTask.enable": true,
56+
"eslint.run": "onType",
57+
"eslint.probe": [
58+
"typescript"
59+
],
60+
"eslint.workingDirectories": [
61+
"./bokehjs",
62+
"./bokehjs/src/lib",
63+
"./bokehjs/src/lib/api",
64+
"./bokehjs/src/lib/client",
65+
"./bokehjs/src/lib/core",
66+
"./bokehjs/src/lib/document",
67+
"./bokehjs/src/lib/embed",
68+
"./bokehjs/src/lib/external",
69+
"./bokehjs/src/lib/models",
70+
"./bokehjs/src/lib/protocol",
71+
],
72+
"files.trimFinalNewlines": true,
73+
"files.insertFinalNewline": true,
74+
"files.trimTrailingWhitespace": true,
75+
"files.exclude": {
76+
"**/.*cache/**": true,
77+
"**/.git": true,
78+
"**/*.pyc": {"when": "$(basename).py"},
79+
"**/__pycache__": true,
80+
"**/build/**": true,
81+
},
82+
"files.watcherExclude": {
83+
"**/build/**": true,
84+
"**/.*cache/**": true,
85+
"**/node_modules/**": true
86+
},
87+
"search.exclude": {
88+
"**/build/**": true,
89+
"**/.*cache/**": true,
90+
"**/node_modules/**": true
91+
},
92+
"typescript.tsdk": "bokeh/bokehjs/node_modules/typescript/lib",
93+
"yaml.schemas": {
94+
"file:///Users/bryan/.vscode/extensions/ms-python.python-2021.10.1365161279/schemas/conda-meta.json": "file:///Users/bryan/work/bokeh/conda/recipe/meta.yaml"
95+
}
96+
},
97+
}

0 commit comments

Comments
 (0)