Skip to content

Commit 7ce4e61

Browse files
committed
Fix CI
1 parent 08c9c5d commit 7ce4e61

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

server-extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ an `IFrame` that will display static content fetched from the server extension.
349349
350350
The server part of the extension is going to be presented in this section.
351351
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,
353353
your extension needs to be defined as a proper Python package with some hook functions:
354354
355355
```py

toolbar-button/.eslintrc.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,19 @@ module.exports = {
1414
},
1515
plugins: ['@typescript-eslint', 'jsdoc'],
1616
rules: {
17-
'@typescript-eslint/interface-name-prefix': [
17+
'@typescript-eslint/naming-convention': [
1818
'error',
19-
{ prefixWithI: 'always' },
19+
{
20+
selector: 'interface',
21+
format: ['PascalCase'],
22+
custom: {
23+
regex: '^I[A-Z]',
24+
match: true,
25+
},
26+
},
2027
],
2128
'@typescript-eslint/no-unused-vars': ['warn', { args: 'none' }],
2229
'@typescript-eslint/no-explicit-any': 'off',
23-
'@typescript-eslint/camelcase': 'warn',
2430
'@typescript-eslint/no-namespace': 'off',
2531
'@typescript-eslint/no-use-before-define': 'off',
2632
'@typescript-eslint/quotes': [

0 commit comments

Comments
 (0)