Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 21, 2023
1 parent b611d13 commit 9ce780f
Show file tree
Hide file tree
Showing 19 changed files with 18 additions and 26 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Brendan Graetz <[email protected]>
Bruno Fenzl <[email protected]>
Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Daniel Killenberger <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
Frank Kovacs <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion async/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion async/reduce-right/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unsafe-any */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */

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

Expand Down
2 changes: 0 additions & 2 deletions async/reduce/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:no-unsafe-any */

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

const reducer = ( acc: any, value: number, index: number, next: Function ) => {
Expand Down
2 changes: 1 addition & 1 deletion circular-buffer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
8 changes: 1 addition & 7 deletions curry-right/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,10 @@
// MODULES //

var tape = require( 'tape' );
var add = require( '@stdlib/math/base/ops/add3' );
var curryRight = require( './../lib' );


// FUNCTIONS //

function add( x, y, z ) {
return x + y + z;
}


// TESTS //

tape( 'main export is a function', function test( t ) {
Expand Down
2 changes: 1 addition & 1 deletion docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion doubly-linked-list/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// TypeScript Version: 4.1

// tslint:disable:max-classes-per-file
/* eslint-disable max-classes-per-file */

/// <reference types="@stdlib/types"/>

Expand Down
2 changes: 1 addition & 1 deletion doubly-linked-list/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion dsv/base/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion dsv/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion fifo/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion for-in/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-construct */
/* eslint-disable no-new-wrappers */

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

Expand Down
2 changes: 1 addition & 1 deletion for-own/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-construct */
/* eslint-disable no-new-wrappers */

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

Expand Down
3 changes: 1 addition & 2 deletions inherit/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-invalid-this */
/* tslint:disable:expect */
/* eslint-disable @typescript-eslint/no-invalid-this */

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

Expand Down
2 changes: 1 addition & 1 deletion linked-list/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// TypeScript Version: 4.1

// tslint:disable:max-classes-per-file
/* eslint-disable max-classes-per-file */

/// <reference types="@stdlib/types"/>

Expand Down
2 changes: 1 addition & 1 deletion linked-list/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down
2 changes: 1 addition & 1 deletion named-typed-tuple/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// TypeScript Version: 4.1

// tslint:disable:max-file-line-count
/* eslint-disable max-lines */

/// <reference types="@stdlib/types"/>

Expand Down
2 changes: 1 addition & 1 deletion stack/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

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

Expand Down

0 comments on commit 9ce780f

Please sign in to comment.