Skip to content

Commit

Permalink
build: remove tslint directives
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Nov 12, 2023
1 parent d82aaaa commit ef6e188
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/iter/datespace/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ interface Options {
*
* // ...
*/
declare function iterDatespace( start: number | string | Date, stop: number | string | Date, N?: number, options?: Options ): Iterator; // tslint:disable-line: max-length
declare function iterDatespace( start: number | string | Date, stop: number | string | Date, N?: number, options?: Options ): Iterator;

/**
* Returns an iterator which returns evenly spaced dates over a specified interval.
Expand Down Expand Up @@ -105,7 +105,7 @@ declare function iterDatespace( start: number | string | Date, stop: number | st
*
* // ...
*/
declare function iterDatespace( start: number | string | Date, stop: number | string | Date, options?: Options ): Iterator; // tslint:disable-line: max-length
declare function iterDatespace( start: number | string | Date, stop: number | string | Date, options?: Options ): Iterator;


// EXPORTS //
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/iter/dedupe-by/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ type Quaternary = ( curr: any, sprev: any, dprev: any, index: number ) => any;
* @param acc - previous resolved value
* @returns resolved value
*/
type Quinary = ( curr: any, sprev: any, dprev: any, index: number, acc: any ) => any; // tslint:disable-line: max-length
type Quinary = ( curr: any, sprev: any, dprev: any, index: number, acc: any ) => any;

/**
* Indicates whether an iterated value is a "duplicate".
Expand Down Expand Up @@ -161,7 +161,7 @@ declare function iterDedupeBy( iterator: Iterator, fcn: Callback ): Iterator;
*
* // ...
*/
declare function iterDedupeBy( iterator: Iterator, limit: number, fcn: Callback ): Iterator; // tslint:disable-line: max-length
declare function iterDedupeBy( iterator: Iterator, limit: number, fcn: Callback ): Iterator;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type Iterator = Iter | IterableIterator;
*
* // ...
*/
declare function iterIncrspace( start: number, stop: number, increment?: number ): Iterator; // tslint:disable-line: max-length
declare function iterIncrspace( start: number, stop: number, increment?: number ): Iterator;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Iterator = Iter | IterableIterator;
*
* // ...
*/
declare function iterLinspace( start: number, stop: number, N?: number ): Iterator; // tslint:disable-line: max-length
declare function iterLinspace( start: number, stop: number, N?: number ): Iterator;


// EXPORTS //
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/iter/logspace/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ interface Options {
*
* // ...
*/
declare function iterLogspace( start: number, stop: number, N?: number, options?: Options ): Iterator; // tslint:disable-line: max-length
declare function iterLogspace( start: number, stop: number, N?: number, options?: Options ): Iterator;

/**
* Returns an iterator which returns evenly spaced numbers on a log scale.
Expand Down Expand Up @@ -98,7 +98,7 @@ declare function iterLogspace( start: number, stop: number, N?: number, options?
*
* // ...
*/
declare function iterLogspace( start: number, stop: number, options?: Options ): Iterator; // tslint:disable-line: max-length
declare function iterLogspace( start: number, stop: number, options?: Options ): Iterator;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/iter/step/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type Iterator = Iter | IterableIterator;
*
* // ...
*/
declare function iterStep( start: number, increment: number, N?: number ): Iterator; // tslint:disable-line: max-length
declare function iterStep( start: number, increment: number, N?: number ): Iterator;


// EXPORTS //
Expand Down

0 comments on commit ef6e188

Please sign in to comment.