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 = {
40
40
ignoreGlobals : true ,
41
41
allow : [
42
42
'cell_type' ,
43
+ 'config_schema' ,
43
44
'execution_count' ,
44
45
'language_info' ,
45
46
'nbconvert_exporter' ,
@@ -52,7 +53,8 @@ module.exports = {
52
53
'lsp_to_ce' ,
53
54
'ce_to_cm' ,
54
55
'cm_to_lsp' ,
55
- 'lsp_to_cm'
56
+ 'lsp_to_cm' ,
57
+ 'workspace_configuration'
56
58
]
57
59
}
58
60
] ,
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export * as SCHEMA from './_schema';
9
9
/** Component- and feature-specific APIs */
10
10
export * from './api' ;
11
11
12
- import { JSONExt } from '@lumino/coreutils' ;
13
12
import { COMPLETION_THEME_MANAGER } from '@jupyter-lsp/completion-theme' ;
14
13
import { plugin as THEME_MATERIAL } from '@jupyter-lsp/theme-material' ;
15
14
import { plugin as THEME_VSCODE } from '@jupyter-lsp/theme-vscode' ;
@@ -27,6 +26,7 @@ import { ISettingRegistry } from '@jupyterlab/settingregistry';
27
26
import { IStatusBar } from '@jupyterlab/statusbar' ;
28
27
import { ITranslator , nullTranslator } from '@jupyterlab/translation' ;
29
28
import { IFormRendererRegistry } from '@jupyterlab/ui-components' ;
29
+ import { JSONExt } from '@lumino/coreutils' ;
30
30
31
31
import '../style/index.css' ;
32
32
Original file line number Diff line number Diff line change 1
- import { SettingsSchemaManager } from './settings' ;
2
- import { ISettingRegistry } from '@jupyterlab/settingregistry' ;
3
1
import { LanguageServerManager } from '@jupyterlab/lsp' ;
2
+ import { ISettingRegistry } from '@jupyterlab/settingregistry' ;
4
3
import { JSONExt } from '@lumino/coreutils' ;
5
4
5
+ import { SettingsSchemaManager } from './settings' ;
6
+
6
7
const DEAULT_SERVER_PRIORITY = 50 ;
7
8
8
9
const SCHEMA : ISettingRegistry . ISchema = {
@@ -152,7 +153,7 @@ const COLLAPSED_PYRIGHT_SETTINGS = {
152
153
}
153
154
} ;
154
155
155
- function map ( object : Object ) {
156
+ function map ( object : Record < string , any > ) {
156
157
return new Map ( Object . entries ( object ) ) ;
157
158
}
158
159
You can’t perform that action at this time.
0 commit comments