File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ an `IFrame` that will display static content fetched from the server extension.
349
349
350
350
The server part of the extension is going to be presented in this section.
351
351
352
- JupyterLab server is built on top of the [Tornado](https://tornadoweb.org/en/stable/guide.html) Python package. To extend the server,
352
+ JupyterLab server is built on top of the [Tornado](https://www. tornadoweb.org/en/stable/guide.html) Python package. To extend the server,
353
353
your extension needs to be defined as a proper Python package with some hook functions:
354
354
355
355
` ` ` py
Original file line number Diff line number Diff line change @@ -14,13 +14,19 @@ module.exports = {
14
14
} ,
15
15
plugins : [ '@typescript-eslint' , 'jsdoc' ] ,
16
16
rules : {
17
- '@typescript-eslint/interface-name-prefix ' : [
17
+ '@typescript-eslint/naming-convention ' : [
18
18
'error' ,
19
- { prefixWithI : 'always' } ,
19
+ {
20
+ selector : 'interface' ,
21
+ format : [ 'PascalCase' ] ,
22
+ custom : {
23
+ regex : '^I[A-Z]' ,
24
+ match : true ,
25
+ } ,
26
+ } ,
20
27
] ,
21
28
'@typescript-eslint/no-unused-vars' : [ 'warn' , { args : 'none' } ] ,
22
29
'@typescript-eslint/no-explicit-any' : 'off' ,
23
- '@typescript-eslint/camelcase' : 'warn' ,
24
30
'@typescript-eslint/no-namespace' : 'off' ,
25
31
'@typescript-eslint/no-use-before-define' : 'off' ,
26
32
'@typescript-eslint/quotes' : [
You can’t perform that action at this time.
0 commit comments