Skip to content

Commit c0ccd8a

Browse files
committed
build: replace tslint directive with eslint equivalent
1 parent bcb4079 commit c0ccd8a

File tree

6 files changed

+6
-6
lines changed
  • lib/node_modules/@stdlib

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/iter/flow/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import iterFlow = require( './index' );
3232
} );
3333
const arr = array2iterator( [ 0, 0, 1, 1, 1, 0, 0, 1, 0, 1 ] );
3434

35-
// tslint:disable-next-line no-unused-expression
35+
// eslint-disable @typescript-eslint/no-unused-expressions
3636
new FluentIterator( arr ); // $ExpectType FluentIterator
3737
}
3838

lib/node_modules/@stdlib/net/disposable-http-server/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* tslint:disable:no-unsafe-any */
19+
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
2020

2121
import httpServer = require( './index' );
2222

lib/node_modules/@stdlib/net/http-server/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* tslint:disable:no-unsafe-any */
19+
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
2020

2121
import httpServer = require( './index' );
2222

lib/node_modules/@stdlib/net/simple-http-server/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* tslint:disable:no-unsafe-any */
19+
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
2020

2121
import httpServer = require( './index' );
2222

lib/node_modules/@stdlib/repl/server/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* tslint:disable:no-unsafe-any */
19+
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
2020

2121
import repl = require( './index' );
2222

lib/node_modules/@stdlib/utils/async/reduce-right/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* tslint:disable:no-unsafe-any */
19+
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
2020

2121
import reduceRightAsync = require( './index' );
2222

0 commit comments

Comments
 (0)