Use @typescript-eslint/semi rule
This commit is contained in:
parent
39d65b136a
commit
fc1cd234d5
36 changed files with 7 additions and 63 deletions
|
@ -2,8 +2,6 @@ export default interface ConsoleFramePresenter {
|
|||
initialize(): void;
|
||||
|
||||
blur(): void;
|
||||
|
||||
// eslint-disable-next-line semi
|
||||
}
|
||||
|
||||
export class ConsoleFramePresenterImpl implements ConsoleFramePresenter {
|
||||
|
|
|
@ -3,8 +3,6 @@ export default interface FindPresenter {
|
|||
find(keyword: string, backwards: boolean): boolean;
|
||||
|
||||
clearSelection(): void;
|
||||
|
||||
// eslint-disable-next-line semi
|
||||
}
|
||||
|
||||
// window.find(aString, aCaseSensitive, aBackwards, aWrapAround,
|
||||
|
|
|
@ -2,8 +2,6 @@ import * as doms from '../../shared/utils/dom';
|
|||
|
||||
export default interface FocusPresenter {
|
||||
focusFirstElement(): boolean;
|
||||
|
||||
// eslint-disable-next-line semi
|
||||
}
|
||||
|
||||
export class FocusPresenterImpl implements FocusPresenter {
|
||||
|
|
|
@ -69,12 +69,10 @@ export default interface FollowPresenter {
|
|||
clearHints(): void;
|
||||
|
||||
getHint(tag: string): Hint | undefined;
|
||||
|
||||
// eslint-disable-next-line semi
|
||||
}
|
||||
|
||||
export class FollowPresenterImpl implements FollowPresenter {
|
||||
private hints: Hint[]
|
||||
private hints: Hint[];
|
||||
|
||||
constructor() {
|
||||
this.hints = [];
|
||||
|
|
|
@ -10,8 +10,6 @@ export default interface NavigationPresenter {
|
|||
openParent(): void;
|
||||
|
||||
openRoot(): void;
|
||||
|
||||
// eslint-disable-next-line semi
|
||||
}
|
||||
|
||||
const REL_PATTERN: {[key: string]: RegExp} = {
|
||||
|
|
|
@ -106,8 +106,6 @@ export default interface ScrollPresenter {
|
|||
scrollToBottom(smooth: boolean): void;
|
||||
scrollToHome(smooth: boolean): void;
|
||||
scrollToEnd(smooth: boolean): void;
|
||||
|
||||
// eslint-disable-next-line semi
|
||||
}
|
||||
|
||||
export class ScrollPresenterImpl {
|
||||
|
|
Reference in a new issue