Skip to content

Commit 23114c6

Browse files
committed
build: remove tslint directives
1 parent d1ea078 commit 23114c6

File tree

15 files changed

+12
-20
lines changed

15 files changed

+12
-20
lines changed

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
@@ -30,7 +30,7 @@ type Array1D<T> = Array<T>;
3030
/**
3131
* One-dimensional array shape.
3232
*/
33-
type Shape1D = [ number ]; // tslint:disable-line:no-single-element-tuple-type
33+
type Shape1D = [ number ];
3434

3535
/**
3636
* Two-dimensional array.

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
@@ -30,7 +30,7 @@ type Array1D<T> = Array<T>;
3030
/**
3131
* One-dimensional array shape.
3232
*/
33-
type Shape1D = [ number ]; // tslint:disable-line:no-single-element-tuple-type
33+
type Shape1D = [ number ];
3434

3535
/**
3636
* Two-dimensional array.

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
@@ -30,7 +30,7 @@ type Array1D<T> = Array<T>;
3030
/**
3131
* One-dimensional array shape.
3232
*/
33-
type Shape1D = [ number ]; // tslint:disable-line:no-single-element-tuple-type
33+
type Shape1D = [ number ];
3434

3535
/**
3636
* Two-dimensional array.

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
@@ -31,7 +31,7 @@ type Array1D<T> = Array<T>;
3131
/**
3232
* One-dimensional array shape.
3333
*/
34-
type Shape1D = [ number ]; // tslint:disable-line:no-single-element-tuple-type
34+
type Shape1D = [ number ];
3535

3636
/**
3737
* Two-dimensional array.

lib/node_modules/@stdlib/array/shared-buffer/docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,4 @@
2323
/**
2424
* Constructor returning an object used to represent a generic, fixed-length raw binary data buffer which can be used to create views of shared memory.
2525
*/
26-
export = SharedArrayBuffer; // tslint:disable-line
27-
28-
// FIXME: need to address TSLint errors regarding ES version
26+
export = SharedArrayBuffer;

lib/node_modules/@stdlib/array/shared-buffer/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818

1919
/* eslint-disable @typescript-eslint/no-unused-expressions */
20-
// tslint:disable: no-unsafe-any
2120

2221
import SharedArrayBuffer = require( './index' );
2322

lib/node_modules/@stdlib/bigint/ctor/docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,4 @@
3131
* @param value - value of the BigInt
3232
* @returns BigInt
3333
*/
34-
export = BigInt; // tslint:disable-line
35-
36-
// FIXME: need to address TSLint errors regarding ES version
34+
export = BigInt;

lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
// tslint:disable:no-construct
2019
/* eslint-disable @typescript-eslint/no-unused-expressions */
2120
// tslint:disable:deprecation
2221

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type Setter = ( buf: ndarray['data'], idx: number, value: any ) => void;
4545
/**
4646
* Interface describing the output object.
4747
*/
48-
interface ndarrayObject { // tslint:disable-line:class-name
48+
interface ndarrayObject {
4949
/**
5050
* Reference to the original ndarray-like object.
5151
*/

lib/node_modules/@stdlib/random/exponential/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ interface PRNGOptions {
6161
/**
6262
* Interface defining ndarray options.
6363
*/
64-
interface ndarrayOptions { // tslint:disable-line:class-name
64+
interface ndarrayOptions {
6565
/**
6666
* Specifies whether an array is row-major (C-style) or column-major (Fortran-style). Default: 'row-major'.
6767
*/

0 commit comments

Comments
 (0)