File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 "@typescript-eslint/no-var-requires": "off",
4444 "@typescript-eslint/prefer-for-of": "error",
4545 "@typescript-eslint/prefer-function-type": "off",
46- "@typescript-eslint/prefer-interface": "off ",
46+ "@typescript-eslint/prefer-interface": "error ",
4747 "@typescript-eslint/prefer-namespace-keyword": "off",
4848 "semi": "off",
4949 "@typescript-eslint/semi": "error",
Original file line number Diff line number Diff line change @@ -2,15 +2,17 @@ import fs = require('fs');
22import path = require( 'path' ) ;
33import child_process = require( "child_process" ) ;
44
5- type Author = {
5+ interface Author {
66 displayNames : string [ ] ;
77 preferredName ?: string ;
88 emails : string [ ] ;
99} ;
1010
11- type AuthorMap = { [ s : string ] : Author } ;
11+ interface AuthorMap {
12+ [ s : string ] : Author
13+ } ;
1214
13- type Command = {
15+ interface Command {
1416 ( ...arg : string [ ] ) : void ;
1517 description ?: string ;
1618} ;
You can’t perform that action at this time.
0 commit comments