diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 3bc3576e..188cda8e 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -9,6 +9,7 @@ Brendan Graetz Bruno Fenzl Christopher Dambamuromo Dan Rose +Daniel Killenberger Dominik Moritz Dorrin Sotoudeh Frank Kovacs diff --git a/async/docs/types/test.ts b/async/docs/types/test.ts index 1cdbcd00..c2dd14ec 100644 --- a/async/docs/types/test.ts +++ b/async/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import ns = require( './index' ); diff --git a/async/reduce-right/docs/types/test.ts b/async/reduce-right/docs/types/test.ts index f0001b3d..0455864c 100644 --- a/async/reduce-right/docs/types/test.ts +++ b/async/reduce-right/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unsafe-any */ +/* eslint-disable @typescript-eslint/no-unsafe-assignment */ import reduceRightAsync = require( './index' ); diff --git a/async/reduce/docs/types/test.ts b/async/reduce/docs/types/test.ts index 18e6be24..dc65786d 100644 --- a/async/reduce/docs/types/test.ts +++ b/async/reduce/docs/types/test.ts @@ -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 ) => { diff --git a/circular-buffer/docs/types/test.ts b/circular-buffer/docs/types/test.ts index 1e3c5af5..a5f1f9a0 100644 --- a/circular-buffer/docs/types/test.ts +++ b/circular-buffer/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import CircularBuffer = require( './index' ); diff --git a/curry-right/test/test.js b/curry-right/test/test.js index b455d237..51a7a9e1 100644 --- a/curry-right/test/test.js +++ b/curry-right/test/test.js @@ -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 ) { diff --git a/docs/types/test.ts b/docs/types/test.ts index 1cdbcd00..c2dd14ec 100644 --- a/docs/types/test.ts +++ b/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import ns = require( './index' ); diff --git a/doubly-linked-list/docs/types/index.d.ts b/doubly-linked-list/docs/types/index.d.ts index bce39334..186769e8 100644 --- a/doubly-linked-list/docs/types/index.d.ts +++ b/doubly-linked-list/docs/types/index.d.ts @@ -18,7 +18,7 @@ // TypeScript Version: 4.1 -// tslint:disable:max-classes-per-file +/* eslint-disable max-classes-per-file */ /// diff --git a/doubly-linked-list/docs/types/test.ts b/doubly-linked-list/docs/types/test.ts index 6ce50c75..9f3f7b6f 100644 --- a/doubly-linked-list/docs/types/test.ts +++ b/doubly-linked-list/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import DoublyLinkedList = require( './index' ); diff --git a/dsv/base/docs/types/test.ts b/dsv/base/docs/types/test.ts index ed1e2f41..e344b791 100644 --- a/dsv/base/docs/types/test.ts +++ b/dsv/base/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import ns = require( './index' ); diff --git a/dsv/docs/types/test.ts b/dsv/docs/types/test.ts index ed1e2f41..e344b791 100644 --- a/dsv/docs/types/test.ts +++ b/dsv/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import ns = require( './index' ); diff --git a/fifo/docs/types/test.ts b/fifo/docs/types/test.ts index 67880a51..2df75120 100644 --- a/fifo/docs/types/test.ts +++ b/fifo/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import FIFO = require( './index' ); diff --git a/for-in/docs/types/test.ts b/for-in/docs/types/test.ts index 8a338cc4..40ecdd1d 100644 --- a/for-in/docs/types/test.ts +++ b/for-in/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-construct */ +/* eslint-disable no-new-wrappers */ import forIn = require( './index' ); diff --git a/for-own/docs/types/test.ts b/for-own/docs/types/test.ts index 79fb02b8..bf6de777 100644 --- a/for-own/docs/types/test.ts +++ b/for-own/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-construct */ +/* eslint-disable no-new-wrappers */ import forOwn = require( './index' ); diff --git a/inherit/docs/types/test.ts b/inherit/docs/types/test.ts index 4aea486d..bd9fc442 100644 --- a/inherit/docs/types/test.ts +++ b/inherit/docs/types/test.ts @@ -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' ); diff --git a/linked-list/docs/types/index.d.ts b/linked-list/docs/types/index.d.ts index 277e3f8c..796e5362 100644 --- a/linked-list/docs/types/index.d.ts +++ b/linked-list/docs/types/index.d.ts @@ -18,7 +18,7 @@ // TypeScript Version: 4.1 -// tslint:disable:max-classes-per-file +/* eslint-disable max-classes-per-file */ /// diff --git a/linked-list/docs/types/test.ts b/linked-list/docs/types/test.ts index aef1f5d0..fce3cf0c 100644 --- a/linked-list/docs/types/test.ts +++ b/linked-list/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import LinkedList = require( './index' ); diff --git a/named-typed-tuple/docs/types/index.d.ts b/named-typed-tuple/docs/types/index.d.ts index 859c0ddd..f798852b 100644 --- a/named-typed-tuple/docs/types/index.d.ts +++ b/named-typed-tuple/docs/types/index.d.ts @@ -18,7 +18,7 @@ // TypeScript Version: 4.1 -// tslint:disable:max-file-line-count +/* eslint-disable max-lines */ /// diff --git a/stack/docs/types/test.ts b/stack/docs/types/test.ts index 7c57fb49..6a83c031 100644 --- a/stack/docs/types/test.ts +++ b/stack/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import Stack = require( './index' );