diff --git a/lib/node_modules/@stdlib/array/int16/docs/types/test.ts b/lib/node_modules/@stdlib/array/int16/docs/types/test.ts index 782d3d9ac6bf..1b7bd5174eeb 100644 --- a/lib/node_modules/@stdlib/array/int16/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/int16/docs/types/test.ts @@ -16,7 +16,6 @@ * limitations under the License. */ -// tslint:disable: no-construct /* eslint-disable @typescript-eslint/no-unused-expressions */ import Int16Array = require( './index' ); diff --git a/lib/node_modules/@stdlib/array/pool/docs/types/test.ts b/lib/node_modules/@stdlib/array/pool/docs/types/test.ts index 6602ad793327..4336c42643b5 100644 --- a/lib/node_modules/@stdlib/array/pool/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/pool/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-empty */ +/* eslint-disable no-empty */ /* eslint-disable @typescript-eslint/no-unused-expressions */ import typedarraypool = require( './index' ); diff --git a/lib/node_modules/@stdlib/assert/is-class/docs/types/test.ts b/lib/node_modules/@stdlib/assert/is-class/docs/types/test.ts index 9d92158bdc80..e68468237afe 100644 --- a/lib/node_modules/@stdlib/assert/is-class/docs/types/test.ts +++ b/lib/node_modules/@stdlib/assert/is-class/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-empty */ +/* eslint-disable no-empty */ import isClass = require( './index' ); diff --git a/lib/node_modules/@stdlib/bench/harness/docs/types/test.ts b/lib/node_modules/@stdlib/bench/harness/docs/types/test.ts index 163c12ff7432..a743586dc231 100644 --- a/lib/node_modules/@stdlib/bench/harness/docs/types/test.ts +++ b/lib/node_modules/@stdlib/bench/harness/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-empty */ +/* eslint-disable no-empty */ import bench = require( './index' ); diff --git a/lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts b/lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts index 8d182b957883..1a1f37fa327a 100644 --- a/lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts +++ b/lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts @@ -17,7 +17,6 @@ */ /* eslint-disable @typescript-eslint/no-unused-expressions */ -// tslint:disable:deprecation import Buffer = require( './index' ); diff --git a/lib/node_modules/@stdlib/iter/flow/docs/types/test.ts b/lib/node_modules/@stdlib/iter/flow/docs/types/test.ts index 8630950eccf5..5d9eac71b371 100644 --- a/lib/node_modules/@stdlib/iter/flow/docs/types/test.ts +++ b/lib/node_modules/@stdlib/iter/flow/docs/types/test.ts @@ -26,7 +26,6 @@ import iterFlow = require( './index' ); // The function returns a fluent iterator... { - // tslint:disable-next-line variable-name const FluentIterator = iterFlow( { 'head': iterHead, 'some': iterSome diff --git a/lib/node_modules/@stdlib/ndarray/slice-assign/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/slice-assign/docs/types/index.d.ts index ee46ecbef6f8..9ee40047fb02 100644 --- a/lib/node_modules/@stdlib/ndarray/slice-assign/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/slice-assign/docs/types/index.d.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:max-file-line-count */ +/* eslint-disable max-lines */ // TypeScript Version: 4.1 diff --git a/lib/node_modules/@stdlib/ndarray/slice/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/slice/docs/types/index.d.ts index 067bd1522112..f1dc61711600 100644 --- a/lib/node_modules/@stdlib/ndarray/slice/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/slice/docs/types/index.d.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:max-file-line-count */ +/* eslint-disable max-lines */ // TypeScript Version: 4.1 diff --git a/lib/node_modules/@stdlib/strided/dispatch-by/docs/types/test.ts b/lib/node_modules/@stdlib/strided/dispatch-by/docs/types/test.ts index fd81219259f3..e42d05019922 100644 --- a/lib/node_modules/@stdlib/strided/dispatch-by/docs/types/test.ts +++ b/lib/node_modules/@stdlib/strided/dispatch-by/docs/types/test.ts @@ -119,7 +119,7 @@ function strided( arrays: Array>, shape: Array, strides: sy = strides[ 1 ]; ix = 0; iy = 0; - for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement + for ( i = 0; i < N; i++ ) { v = clbk.call( thisArg, x[ ix ], i, [ ix, iy ], [ x, y ] ); if ( v !== void 0 ) { y[ iy ] = fcn( v ); @@ -158,7 +158,7 @@ function stridedWithOffsets( arrays: Array>, shape: Array sy = strides[ 1 ]; ix = offsets[ 0 ]; iy = offsets[ 1 ]; - for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement + for ( i = 0; i < N; i++ ) { v = clbk.call( thisArg, x[ ix ], i, [ ix, iy ], [ x, y ] ); if ( v !== void 0 ) { y[ iy ] = fcn( v ); diff --git a/lib/node_modules/@stdlib/strided/dispatch/docs/types/test.ts b/lib/node_modules/@stdlib/strided/dispatch/docs/types/test.ts index e7f271991afe..2eae2f0852f4 100644 --- a/lib/node_modules/@stdlib/strided/dispatch/docs/types/test.ts +++ b/lib/node_modules/@stdlib/strided/dispatch/docs/types/test.ts @@ -106,7 +106,7 @@ function strided( arrays: Array>, shape: Array, strides: sy = strides[ 1 ]; ix = 0; iy = 0; - for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement + for ( i = 0; i < N; i++ ) { y[ iy ] = fcn( x[ ix ] ); ix += sx; iy += sy; @@ -139,7 +139,7 @@ function stridedWithOffsets( arrays: Array>, shape: Array sy = strides[ 1 ]; ix = offsets[ 0 ]; iy = offsets[ 1 ]; - for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement + for ( i = 0; i < N; i++ ) { y[ iy ] = fcn( x[ ix ] ); ix += sx; iy += sy;