Skip to content

Commit de93ae0

Browse files
committed
build: remove tslint directives
1 parent de1a221 commit de93ae0

File tree

31 files changed

+52
-52
lines changed

31 files changed

+52
-52
lines changed

lib/node_modules/@stdlib/array/base/accessor-getter/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ declare function getter( dtype: 'complex64' ): GetComplex64;
125125
* var v = get( arr, 2 );
126126
* // returns 3
127127
*/
128-
declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics
128+
declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>;
129129

130130

131131
// EXPORTS //

lib/node_modules/@stdlib/array/base/accessor-setter/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ declare function setter( dtype: 'complex64' ): SetComplex64;
132132
* var v = arr.get( 2 );
133133
* // returns 3
134134
*/
135-
declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics
135+
declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>;
136136

137137

138138
// EXPORTS //

lib/node_modules/@stdlib/array/base/fillednd-by/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape10D, clbk: Ca
317317
* var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
318318
* // returns [ [ [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ] ]
319319
*/
320-
declare function filledndBy<T = unknown, V = unknown>( shape: Shape, clbk: Callback<T, V>, thisArg?: ThisParameterType<Callback<T, V>> ): Array<T>; // tslint:disable-line:no-unnecessary-generics
320+
declare function filledndBy<T = unknown, V = unknown>( shape: Shape, clbk: Callback<T, V>, thisArg?: ThisParameterType<Callback<T, V>> ): Array<T>;
321321

322322

323323
// EXPORTS //

lib/node_modules/@stdlib/array/base/fillednd/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ declare function fillednd<T = unknown>( value: T, shape: Shape10D ): Array10D<T>
305305
* var out = fillednd( 'beep', [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ] );
306306
* // returns [ [ [ [ [ [ [ [ [ [ [ 'beep', 'beep', 'beep' ] ] ] ] ] ] ] ] ] ]
307307
*/
308-
declare function fillednd<T = unknown, U = unknown>( value: T, shape: Shape ): Array<U>; // tslint:disable-line:no-unnecessary-generics
308+
declare function fillednd<T = unknown, U = unknown>( value: T, shape: Shape ): Array<U>;
309309

310310

311311
// EXPORTS //

lib/node_modules/@stdlib/array/base/getter/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ declare function getter( dtype: 'uint8c' ): GetUint8c;
287287
* var v = get( arr, 2 );
288288
* // returns 3
289289
*/
290-
declare function getter<T = unknown>( dtype: 'generic' ): GetGeneric<T>; // tslint:disable-line:no-unnecessary-generics
290+
declare function getter<T = unknown>( dtype: 'generic' ): GetGeneric<T>;
291291

292292
/**
293293
* Returns an accessor function for retrieving an element from an indexed array-like object.
@@ -304,7 +304,7 @@ declare function getter<T = unknown>( dtype: 'generic' ): GetGeneric<T>; // tsli
304304
* var v = get( arr, 2 );
305305
* // returns 3
306306
*/
307-
declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics
307+
declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>;
308308

309309

310310
// EXPORTS //

lib/node_modules/@stdlib/array/base/onesnd/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ declare function onesnd( shape: Shape10D ): Array10D<number>;
250250
* var out = onesnd( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ] );
251251
* // returns [ [ [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ] ]
252252
*/
253-
declare function onesnd<T = unknown>( shape: Collection<number> ): Array<T>; // tslint:disable-line:no-unnecessary-generics
253+
declare function onesnd<T = unknown>( shape: Collection<number> ): Array<T>;
254254

255255

256256
// EXPORTS //

lib/node_modules/@stdlib/array/base/setter/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ declare function setter( dtype: 'uint8c' ): SetUint8c;
307307
* var v = arr[ 2 ];
308308
* // returns 3
309309
*/
310-
declare function setter<T = unknown>( dtype: 'generic' ): SetGeneric<T>; // tslint:disable-line:no-unnecessary-generics
310+
declare function setter<T = unknown>( dtype: 'generic' ): SetGeneric<T>;
311311

312312
/**
313313
* Returns an accessor function for setting an element in an indexed array-like object.
@@ -326,7 +326,7 @@ declare function setter<T = unknown>( dtype: 'generic' ): SetGeneric<T>; // tsli
326326
* var v = arr[ 2 ];
327327
* // returns 3
328328
*/
329-
declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics
329+
declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>;
330330

331331

332332
// EXPORTS //

lib/node_modules/@stdlib/array/base/zerosnd/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ declare function zerosnd( shape: Shape10D ): Array10D<number>;
251251
* var out = zerosnd( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ] );
252252
* // returns [ [ [ [ [ [ [ [ [ [ [ 0.0, 0.0, 0.0 ] ] ] ] ] ] ] ] ] ]
253253
*/
254-
declare function zerosnd<T = unknown>( shape: Shape ): Array<T>; // tslint:disable-line:no-unnecessary-generics
254+
declare function zerosnd<T = unknown>( shape: Shape ): Array<T>;
255255

256256

257257
// EXPORTS //

lib/node_modules/@stdlib/ndarray/array/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ interface ExtendedOptions extends Options {
164164
* var v = arr.get( 0 );
165165
* // returns [ 1, 2 ]
166166
*/
167-
declare function array<T = unknown>( options: OptionsWithShape | OptionsWithBuffer ): typedndarray<T>; // tslint:disable-line:no-unnecessary-generics
167+
declare function array<T = unknown>( options: OptionsWithShape | OptionsWithBuffer ): typedndarray<T>;
168168

169169
/**
170170
* Returns a multidimensional array.
@@ -220,7 +220,7 @@ declare function array<T = unknown>( options: OptionsWithShape | OptionsWithBuff
220220
* var v = arr.get( 0, 0 );
221221
* // returns 1.0
222222
*/
223-
declare function array<T = unknown>( buffer: ArrayLike<any>, options?: ExtendedOptions ): typedndarray<T>; // tslint:disable-line:no-unnecessary-generics
223+
declare function array<T = unknown>( buffer: ArrayLike<any>, options?: ExtendedOptions ): typedndarray<T>;
224224

225225

226226
// EXPORTS //

lib/node_modules/@stdlib/ndarray/iter/to-array-each/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type Iterator<T> = TypedIterator<T> | TypedIterableIterator<T>;
5757
*
5858
* // ...
5959
*/
60-
declare function nditer2arrayEach<T = unknown>( iterator: Iterator<ndarray> ): Iterator<Array<T>>; // tslint:disable-line:no-unnecessary-generics
60+
declare function nditer2arrayEach<T = unknown>( iterator: Iterator<ndarray> ): Iterator<Array<T>>;
6161

6262

6363
// EXPORTS //

0 commit comments

Comments
 (0)