File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ module.exports = {
4040 ignoreGlobals : true ,
4141 allow : [
4242 'cell_type' ,
43+ 'config_schema' ,
4344 'execution_count' ,
4445 'language_info' ,
4546 'nbconvert_exporter' ,
@@ -52,7 +53,8 @@ module.exports = {
5253 'lsp_to_ce' ,
5354 'ce_to_cm' ,
5455 'cm_to_lsp' ,
55- 'lsp_to_cm'
56+ 'lsp_to_cm' ,
57+ 'workspace_configuration'
5658 ]
5759 }
5860 ] ,
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export * as SCHEMA from './_schema';
99/** Component- and feature-specific APIs */
1010export * from './api' ;
1111
12- import { JSONExt } from '@lumino/coreutils' ;
1312import { COMPLETION_THEME_MANAGER } from '@jupyter-lsp/completion-theme' ;
1413import { plugin as THEME_MATERIAL } from '@jupyter-lsp/theme-material' ;
1514import { plugin as THEME_VSCODE } from '@jupyter-lsp/theme-vscode' ;
@@ -27,6 +26,7 @@ import { ISettingRegistry } from '@jupyterlab/settingregistry';
2726import { IStatusBar } from '@jupyterlab/statusbar' ;
2827import { ITranslator , nullTranslator } from '@jupyterlab/translation' ;
2928import { IFormRendererRegistry } from '@jupyterlab/ui-components' ;
29+ import { JSONExt } from '@lumino/coreutils' ;
3030
3131import '../style/index.css' ;
3232
Original file line number Diff line number Diff line change 1- import { SettingsSchemaManager } from './settings' ;
2- import { ISettingRegistry } from '@jupyterlab/settingregistry' ;
31import { LanguageServerManager } from '@jupyterlab/lsp' ;
2+ import { ISettingRegistry } from '@jupyterlab/settingregistry' ;
43import { JSONExt } from '@lumino/coreutils' ;
54
5+ import { SettingsSchemaManager } from './settings' ;
6+
67const DEAULT_SERVER_PRIORITY = 50 ;
78
89const SCHEMA : ISettingRegistry . ISchema = {
@@ -152,7 +153,7 @@ const COLLAPSED_PYRIGHT_SETTINGS = {
152153 }
153154} ;
154155
155- function map ( object : Object ) {
156+ function map ( object : Record < string , any > ) {
156157 return new Map ( Object . entries ( object ) ) ;
157158}
158159
You can’t perform that action at this time.
0 commit comments