Skip to content

Commit

Permalink
build: replace tslint directive with eslint equivalent
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Nov 12, 2023
1 parent 8fbd70f commit b496b72
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
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 AccessorArray = require( './index' );

Expand Down
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 Complex128Array = require( './index' );
import Complex128 = require( '@stdlib/complex/float64' );
Expand Down
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 Complex64Array = require( './index' );
import Complex64 = require( '@stdlib/complex/float32' );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/buffer/ctor/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

// tslint:disable:no-construct

This comment has been minimized.

Copy link
@kgryte

kgryte Nov 13, 2023

Member

@Planeshifter Obviously other lint rules here, but I imagine these will be removed in subsequent commits.

This comment has been minimized.

Copy link
@kgryte

kgryte Nov 13, 2023

Member

E.g., 4626ee3

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

import Buffer = require( './index' );
Expand Down
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 ndarray = require( './index' );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/slice/ctor/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 Slice = require( './index' );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/slice/multi/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 Slice = require( '@stdlib/slice/ctor' );
import MultiSlice = require( './index' );
Expand Down

0 comments on commit b496b72

Please sign in to comment.