File tree Expand file tree Collapse file tree 2 files changed +32
-6
lines changed Expand file tree Collapse file tree 2 files changed +32
-6
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "@krassowski/jupyterlab-lsp/plugin" : {
3
+ "language_servers" : {
4
+ "robotframework_ls" : {
5
+ "serverSettings" : {
6
+ "robot.lint.robocop.enabled" : true
7
+ }
8
+ },
9
+ "texlab" : {
10
+ "serverSettings" : {
11
+ "latex.lint.onChange" : true
12
+ }
13
+ },
14
+ "pyright" : {
15
+ "serverSettings" : {
16
+ "python.analysis.useLibraryCodeForTypes" : true
17
+ }
18
+ }
19
+ }
20
+ }
21
+ }
Original file line number Diff line number Diff line change @@ -6,18 +6,23 @@ jlpm bootstrap
6
6
7
7
# Do a dev install of the server side
8
8
pushd python_packages/jupyter_lsp
9
- python setup.py sdist bdist_wheel
10
- python -m pip install -e . --ignore-installed --no-deps -vv
11
- jupyter serverextension enable --sys-prefix --py jupyter_lsp
9
+ python setup.py sdist bdist_wheel
10
+ python -m pip install -e . --ignore-installed --no-deps -vv
11
+ jupyter serverextension enable --sys-prefix --py jupyter_lsp
12
12
popd
13
13
14
14
# Install the labextension
15
15
pushd python_packages/jupyterlab_lsp
16
- python setup.py sdist bdist_wheel
17
- python -m pip install -e . --ignore-installed --no-deps -vv
18
- jupyter labextension develop . --overwrite
16
+ python setup.py sdist bdist_wheel
17
+ python -m pip install -e . --ignore-installed --no-deps -vv
18
+ jupyter labextension develop . --overwrite
19
19
popd
20
+
20
21
# List extensions
21
22
jupyter serverextension list
22
23
jupyter server extension list
23
24
jupyter labextension list
25
+
26
+ if [ " $NB_USER " = " jovyan" ]; then
27
+ cp binder/overrides.json $NB_PYTHON_PREFIX /share/jupyter/lab/settings/
28
+ fi
You can’t perform that action at this time.
0 commit comments