File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ module.exports = {
24
24
'@typescript-eslint/no-this-alias' : [
25
25
'error' ,
26
26
{
27
- allowedNames : [ 'self' ] , // Allow `const self = this`; `[]` by default
27
+ allowedNames : [ 'self' ] , // Allow `const self = this`
28
28
} ,
29
29
] ,
30
30
'@typescript-eslint/no-use-before-define' : 'off' ,
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ script:
18
18
# Log the current state of jupyterlab's extensions
19
19
- jupyter labextension list
20
20
21
- # Do a tslint check
22
- - jlpm run lint
21
+ # Do a eslint check
22
+ - jlpm run lint-check
23
23
24
24
# Rebuild jupyterlab to include our extension
25
25
- jupyter lab build
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { ISignal } from '@lumino/signaling';
5
5
6
6
export const EXTENSION_ID = 'jupyter.extensions.git_plugin' ;
7
7
8
- // tslint:disable-next-line: variable-name
9
8
export const IGitExtension = new Token < IGitExtension > ( EXTENSION_ID ) ;
10
9
11
10
/** Interface for extension class */
You can’t perform that action at this time.
0 commit comments