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 9502ed2 commit 312bed1
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* limitations under the License.
*/

/* tslint:disable:max-line-length */

import iterIntersectionByHash = require( './index' );

/**
Expand Down
2 changes: 0 additions & 2 deletions lib/node_modules/@stdlib/iter/intersection/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* limitations under the License.
*/

/* tslint:disable:max-line-length */

import iterIntersection = require( './index' );

/**
Expand Down
2 changes: 0 additions & 2 deletions lib/node_modules/@stdlib/iter/union/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* limitations under the License.
*/

/* tslint:disable:max-line-length */

import iterUnion = require( './index' );

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ interface Options {
* var str = compile( P, Q );
* // returns <string>
*/
declare function compile( P: Array<number>, Q: Array<number>, options?: Options ): string; // tslint:disable-line max-line-length
declare function compile( P: Array<number>, Q: Array<number>, options?: Options ): string;


// EXPORTS //
Expand Down

0 comments on commit 312bed1

Please sign in to comment.