-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #919 from krassowski/overrides-fix
Fix `overrides.json` not being picked up in defaults
- Loading branch information
Showing
8 changed files
with
538 additions
and
562 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
{ | ||
"@jupyterlab/statusbar-extension:plugin": { | ||
"visible": true | ||
"@jupyterlab/statusbar-extension:plugin": { | ||
"visible": true | ||
}, | ||
"@jupyter-lsp/jupyterlab-lsp:plugin": { | ||
"language_servers": { | ||
"pylsp-with-override-json": { | ||
"serverSettings": { | ||
"pylsp.plugins.flake8.enabled": true, | ||
"pylsp.plugins.pyflakes.enabled": false | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"""work with jupyter paths""" | ||
|
||
from jupyterlab.commands import get_app_dir | ||
|
||
|
||
def get_jupyterlab_path(): | ||
"""Get JupyterLab Application Directory path""" | ||
return get_app_dir() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.