File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ export default class DemoForm {
2727 protected $errorContainer : HTMLDivElement ;
2828 protected $errorMessage : HTMLPreElement ;
2929
30- // eslint-disable-next-line @typescript-eslint/no-empty-function
30+ // eslint-disable-next-line @typescript-eslint/no-empty-function, class-methods-use-this
3131 public onSubmit : ( ) => void = ( ) => { } ;
32- // eslint-disable-next-line @typescript-eslint/no-empty-function
32+ // eslint-disable-next-line @typescript-eslint/no-empty-function, class-methods-use-this
3333 public onCancel : ( ) => void = ( ) => { } ;
3434
3535 private onInputKeydown ( event : KeyboardEvent ) : boolean {
Original file line number Diff line number Diff line change @@ -12,11 +12,13 @@ export default class Expansion {
1212 /**
1313 * A single blank string Expansion
1414 */
15+ // eslint-disable-next-line no-use-before-define
1516 public static Blank : Expansion = new Expansion ( [ '' ] , 1 ) ;
1617
1718 /**
1819 * Zero string expansions
1920 */
21+ // eslint-disable-next-line no-use-before-define
2022 public static Empty : Expansion = new Expansion ( [ ] , 0 ) ;
2123
2224 /**
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ describe('count', () => {
6262 } ) ;
6363
6464 it . each < [ RegExp | string , number ] > ( [
65- [ new RegExp ( '' ) , 1 ] ,
65+ [ new RegExp ( '' ) , 1 ] , // eslint-disable-line prefer-regex-literals
6666 [ / a b c / , 1 ] ,
6767 [ / \d / , 10 ] ,
6868 [ / a b ? / , 2 ] ,
You can’t perform that action at this time.
0 commit comments