Skip to content

Commit bcb4079

Browse files
committed
build: remove and replace tslint directives
1 parent 23114c6 commit bcb4079

File tree

10 files changed

+9
-12
lines changed

10 files changed

+9
-12
lines changed

lib/node_modules/@stdlib/array/int16/docs/types/test.ts

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

19-
// tslint:disable: no-construct
2019
/* eslint-disable @typescript-eslint/no-unused-expressions */
2120

2221
import Int16Array = require( './index' );

lib/node_modules/@stdlib/array/pool/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-empty */
19+
/* eslint-disable no-empty */
2020
/* eslint-disable @typescript-eslint/no-unused-expressions */
2121

2222
import typedarraypool = require( './index' );

lib/node_modules/@stdlib/assert/is-class/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-empty */
19+
/* eslint-disable no-empty */
2020

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

lib/node_modules/@stdlib/bench/harness/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-empty */
19+
/* eslint-disable no-empty */
2020

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

lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818

1919
/* eslint-disable @typescript-eslint/no-unused-expressions */
20-
// tslint:disable:deprecation
2120

2221
import Buffer = require( './index' );
2322

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import iterFlow = require( './index' );
2626

2727
// The function returns a fluent iterator...
2828
{
29-
// tslint:disable-next-line variable-name
3029
const FluentIterator = iterFlow( {
3130
'head': iterHead,
3231
'some': iterSome

lib/node_modules/@stdlib/ndarray/slice-assign/docs/types/index.d.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:max-file-line-count */
19+
/* eslint-disable max-lines */
2020

2121
// TypeScript Version: 4.1
2222

lib/node_modules/@stdlib/ndarray/slice/docs/types/index.d.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:max-file-line-count */
19+
/* eslint-disable max-lines */
2020

2121
// TypeScript Version: 4.1
2222

lib/node_modules/@stdlib/strided/dispatch-by/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function strided( arrays: Array<ArrayLike<any>>, shape: Array<number>, strides:
119119
sy = strides[ 1 ];
120120
ix = 0;
121121
iy = 0;
122-
for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement
122+
for ( i = 0; i < N; i++ ) {
123123
v = clbk.call( thisArg, x[ ix ], i, [ ix, iy ], [ x, y ] );
124124
if ( v !== void 0 ) {
125125
y[ iy ] = fcn( v );
@@ -158,7 +158,7 @@ function stridedWithOffsets( arrays: Array<ArrayLike<any>>, shape: Array<number>
158158
sy = strides[ 1 ];
159159
ix = offsets[ 0 ];
160160
iy = offsets[ 1 ];
161-
for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement
161+
for ( i = 0; i < N; i++ ) {
162162
v = clbk.call( thisArg, x[ ix ], i, [ ix, iy ], [ x, y ] );
163163
if ( v !== void 0 ) {
164164
y[ iy ] = fcn( v );

lib/node_modules/@stdlib/strided/dispatch/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function strided( arrays: Array<ArrayLike<any>>, shape: Array<number>, strides:
106106
sy = strides[ 1 ];
107107
ix = 0;
108108
iy = 0;
109-
for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement
109+
for ( i = 0; i < N; i++ ) {
110110
y[ iy ] = fcn( x[ ix ] );
111111
ix += sx;
112112
iy += sy;
@@ -139,7 +139,7 @@ function stridedWithOffsets( arrays: Array<ArrayLike<any>>, shape: Array<number>
139139
sy = strides[ 1 ];
140140
ix = offsets[ 0 ];
141141
iy = offsets[ 1 ];
142-
for ( i = 0; i < N; i++ ) { // tslint:disable-line:increment-decrement
142+
for ( i = 0; i < N; i++ ) {
143143
y[ iy ] = fcn( x[ ix ] );
144144
ix += sx;
145145
iy += sy;

0 commit comments

Comments
 (0)