Skip to content

Commit e65c408

Browse files
committed
Minor tuning of eslint
1 parent a7dc6bc commit e65c408

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
'@typescript-eslint/no-this-alias': [
2525
'error',
2626
{
27-
allowedNames: ['self'], // Allow `const self = this`; `[]` by default
27+
allowedNames: ['self'], // Allow `const self = this`
2828
},
2929
],
3030
'@typescript-eslint/no-use-before-define': 'off',

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ script:
1818
# Log the current state of jupyterlab's extensions
1919
- jupyter labextension list
2020

21-
# Do a tslint check
22-
- jlpm run lint
21+
# Do a eslint check
22+
- jlpm run lint-check
2323

2424
# Rebuild jupyterlab to include our extension
2525
- jupyter lab build

src/tokens.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { ISignal } from '@lumino/signaling';
55

66
export const EXTENSION_ID = 'jupyter.extensions.git_plugin';
77

8-
// tslint:disable-next-line: variable-name
98
export const IGitExtension = new Token<IGitExtension>(EXTENSION_ID);
109

1110
/** Interface for extension class */

0 commit comments

Comments
 (0)